Display times on the timetable

This commit is contained in:
2023-01-03 00:21:08 +01:00
parent 4057e4c88b
commit 00c2ac9a56
3 changed files with 38 additions and 1 deletions

View File

@ -65,6 +65,12 @@ model Class {
regex String
}
model Time {
lesson Int @unique
start DateTime
end DateTime
}
model Session {
token String @id @unique @default(uuid())
createdAt DateTime @default(now())