Migrates secrets to prisma
This commit is contained in:
@@ -24,6 +24,19 @@ model Audit {
|
||||
response String?
|
||||
}
|
||||
|
||||
model Secret {
|
||||
versionId String @id
|
||||
name String
|
||||
description String?
|
||||
secretString String
|
||||
accountId String
|
||||
region String
|
||||
createdAt DateTime @default(now())
|
||||
deletionDate DateTime?
|
||||
|
||||
@@index([name])
|
||||
}
|
||||
|
||||
model SnsTopic {
|
||||
name String @id
|
||||
accountId String
|
||||
|
||||
Reference in New Issue
Block a user