mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-30 07:20:08 +00:00
25 lines
514 B
Plaintext
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
|
|
} |