generated from lucxjo/template
Now just need to check that configuration has been set. Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
14 lines
246 B
Text
14 lines
246 B
Text
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "postgresql"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
model guild {
|
|
id String @id @unique
|
|
name String
|
|
reports_channel_id String?
|
|
}
|