// This is your Prisma schema file, // learn more about it in the docs: https://pris.ly/d/prisma-schema // Looking for ways to speed up your queries, or scale easily with your serverless or edge functions? // Try Prisma Accelerate: https://pris.ly/cli/accelerate-init generator client { provider = "prisma-client-js" output = "../src/generated/prisma" } datasource db { provider = "mongodb" url = env("DATABASE_URL") } model mcsBind { id String @id @default(auto()) @map("_id") @db.ObjectId channelId String ip String @@map("mcs_binds") @@index([channelId]) } model brawlPlayer { id String @id @default(auto()) @map("_id") @db.ObjectId userId String playerTag String @@map("brawl_players") @@index([userId]) }