judge4c-latest/prisma/schema.prisma
ngc2207 68af6e813e chore: update .gitignore and package.json
feat: add prisma and prisma client

feat: add problem schema

feat: add problem  create page
2024-11-03 00:33:02 +08:00

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
}