-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Jens Schlegel edited this page Nov 17, 2021
·
2 revisions
| name | type | restrictions |
|---|---|---|
| id | int | pk |
| name | string 100 | not null |
| string | unique | |
| password | string | not null |
| superuser | boolean | std: false |
| createdAt | timestamp |
| name | type | restrictions |
|---|---|---|
| id | int | pk |
| title | string 150 | not null |
| description | text | not null |
| userId | int | fk: user |
| startDate | date | not null |
| endDate | date | not null |
| createdAt | timestamp |
| name | type | restrictions |
|---|---|---|
| id | int | pk |
| description | text | not null |
| userId | int | fk: user |
| competitionId | int | fk: competition |
| createdAt | timestamp |
| name | type | restrictions |
|---|---|---|
| id | int | pk |
| userId | int | fk: user |
| submissionId | int | fk: submission |
| rating | int | 1-5 |