generated from lucxjo/template
(#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:
parent
ae2dbc6c70
commit
faca0b2fda
5 changed files with 142 additions and 7 deletions
14
prisma/schema.prisma
Normal file
14
prisma/schema.prisma
Normal 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?
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue