Files
ava/prisma/schema.prisma
2023-04-23 13:36:43 +02:00

18 lines
357 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
}