Clean imports, add suggestions and recommendations

This commit is contained in:
2024-05-29 09:40:39 +02:00
parent 5113177e6d
commit c70090e0d5
42 changed files with 325 additions and 106 deletions
+10
View File
@@ -30,6 +30,7 @@ enum ContainerType {
PlasticBottle
Can
Carton
Keg
}
model Drink {
@@ -220,4 +221,13 @@ model Session {
@@allow('all', auth().id == user.id)
@@allow('all', auth().type == Admin)
}
model Suggestion {
id Int @id @default(autoincrement())
createdAt DateTime @default(now())
name String?
content String
@@allow('all', true)
}