uploaded docs

This commit is contained in:
2021-11-04 10:20:08 +01:00
parent 3a36937aaf
commit e92dc85aa1
11 changed files with 26 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
Table "User" {
"UID" NUMBER(3) [pk]
"name" VARCHAR(20)
"forename" VARCHAR(20)
"password" VARCHAR(20)
"token" VARCHAR(20)
"isAdmin" boolean
}
Table "Event" {
"EID" NUMBER(3) [pk]
"name" VARCHAR(20)
"priority" NUMBER(1)
"isFullDay" boolean
"start" datetime
"end" datetime
}
Table "EventList" {
"UID" NUMBER(3)
"EID" NUMBER(3)
"date" date
}
Ref:"EventList"."UID" < "User"."UID"
Ref:"EventList"."EID" < "Event"."EID"
Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.