judge4c-demo/prisma/schema.prisma

15 lines
225 B
Plaintext
Raw Permalink Normal View History

generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model Snippet {
id Int @id @default(autoincrement())
title String
code String
}