fix: Adds password into User schema.

This commit is contained in:
greysoh 2024-04-17 11:34:31 -04:00
parent dfc258bde6
commit 6d0fc93138
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
2 changed files with 23 additions and 0 deletions

View file

@ -50,6 +50,8 @@ model User {
email String @unique
name String?
password String // Will be hashed using bcrypt
rootToken String?
permissions Permission[]
}