Refactoring

This commit is contained in:
charles-gauthereau
2024-11-11 10:26:40 +01:00
parent cfd8803b16
commit fd77c601b5
7 changed files with 8854 additions and 13 deletions
+5 -5
View File
@@ -62,11 +62,11 @@ model User {
role String?
password String?
accounts Account[]
sessions Session[]
createdAt DateTime @default(now()) @map("created_at")
updatedAt DateTime? @updatedAt @map("updated_at")
accounts Account[]
sessions Session[]
authMethod String?
createdAt DateTime @default(now()) @map("created_at")
updatedAt DateTime? @updatedAt @map("updated_at")
@@map("users")
}