Files
ava/prisma/schema.prisma
2022-12-18 21:17:45 +01:00

18 lines
340 B
Plaintext

// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "mongodb"
url = env("MONGODB")
}
model stick {
id String @id @map("_id") @default(uuid())
guildid String
channelid String
radio String
}