mirror of
https://github.com/SrIzan10/ava.git
synced 2026-06-06 00:46:53 +00:00
18 lines
357 B
Plaintext
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
|
|
} |