chore: Migrates development to use PostgreSQL instead.
This commit is contained in:
parent
2237568b92
commit
1ae93d71f6
12 changed files with 96 additions and 133 deletions
|
@ -6,7 +6,7 @@ generator client {
|
|||
}
|
||||
|
||||
datasource db {
|
||||
provider = "sqlite"
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
|
@ -54,6 +54,8 @@ model User {
|
|||
|
||||
password String // Will be hashed using bcrypt
|
||||
|
||||
rootToken String?
|
||||
rootToken String?
|
||||
isRootServiceAccount Boolean?
|
||||
|
||||
permissions Permission[]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue