Create schema.prisma

This commit is contained in:
2021-09-14 09:55:50 -07:00
parent bb935df638
commit 690ec904f4
+17
View File
@@ -0,0 +1,17 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
}
model Guild {
id String @id
prefix String @default(">")
isEnabled Boolean @default(true)
}