1
0
mirror of https://github.com/Fayorg/calendrier-avant.git synced 2026-05-27 17:18:38 +02:00

Added grade route.ts

This commit is contained in:
timhaller
2023-12-04 10:06:18 +01:00
parent 7b96b489b3
commit 780a4ada45
5 changed files with 100 additions and 0 deletions

View File

@@ -7,3 +7,16 @@ datasource db {
generator client {
provider = "prisma-client-js"
}
model Keys {
id Int @id @default(autoincrement())
key String @unique
}
model Grade {
id Int @id @default(autoincrement())
test Int
grade Float
key String
createdAt DateTime @default(now())
}