feat(core): setup postgres, minio, and authentik next-auth
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
model KeyValueStore {
|
||||
id String @id @default(uuid())
|
||||
namespace String
|
||||
key String
|
||||
value Json
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
|
||||
@@unique([namespace, key])
|
||||
@@index([namespace])
|
||||
}
|
||||
Reference in New Issue
Block a user