Files
discordeno/examples/bigbot/prisma/schema.prisma
Jonathan Ho d04a040f28 Setup turborepo (#2610)
* chore: BREAKING move to monorepo structure

* chore: setup turborepo
2022-12-01 01:59:02 +08:00

25 lines
514 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 = "postgresql"
url = env("DATABASE_URL")
}
model Guilds {
/// The server id
id BigInt @unique @id
/// The language the server uses.
language String @default("english")
}
model Commands {
/// The server id
id BigInt @unique @id
/// The version number this server is using for it's commands.
version Int
}