mirror of
https://litchi.icu/ngc2207/judge4c-latest.git
synced 2025-07-13 17:14:47 +00:00
16 lines
264 B
Plaintext
16 lines
264 B
Plaintext
|
generator client {
|
||
|
provider = "prisma-client-js"
|
||
|
}
|
||
|
|
||
|
datasource db {
|
||
|
provider = "postgresql"
|
||
|
url = env("DATABASE_URL")
|
||
|
}
|
||
|
|
||
|
model Problem {
|
||
|
id Int @id @default(autoincrement())
|
||
|
title String
|
||
|
difficulty String
|
||
|
description String
|
||
|
}
|