er/prisma/schema.prisma
Louis Hollingworth faca0b2fda
(#1) Now backed with a DB for configuration.
Now just need to check that configuration has been set.

Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2023-06-11 13:09:45 +01:00

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?
}