chore: Migrates development to use PostgreSQL instead.

This commit is contained in:
greysoh 2024-04-21 16:09:20 -04:00
parent 2237568b92
commit 1ae93d71f6
No known key found for this signature in database
GPG key ID: FE0F173B8FC01571
12 changed files with 96 additions and 133 deletions

View file

@ -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[]
}