generated from lucxjo/template
Louis Hollingworth
faca0b2fda
Now just need to check that configuration has been set. Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
15 lines
246 B
Plaintext
15 lines
246 B
Plaintext
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?
|
|
}
|