(#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>
This commit is contained in:
Louis Hollingworth 2023-06-11 13:09:45 +01:00
parent ae2dbc6c70
commit faca0b2fda
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
5 changed files with 142 additions and 7 deletions

14
prisma/schema.prisma Normal file
View file

@ -0,0 +1,14 @@
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?
}