mirror of
https://litchi.icu/ngc2207/judge4c-demo.git
synced 2025-05-18 18:06:34 +00:00
15 lines
225 B
Plaintext
15 lines
225 B
Plaintext
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
|
|
}
|