// 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 }