chore: optimize prisma migration

This commit is contained in:
Elias Schneider
2023-01-26 14:06:25 +01:00
parent 4a5fb549c6
commit 7e91038a24
5 changed files with 132 additions and 155 deletions

View File

@@ -118,10 +118,9 @@ model ShareSecurity {
}
model Config {
id Int @id
updatedAt DateTime @updatedAt
key String @unique
key String @id
type String
value String
description String
@@ -129,4 +128,5 @@ model Config {
obscured Boolean @default(false)
secret Boolean @default(true)
locked Boolean @default(false)
order Int
}