Add missing id column for availibility table

This commit is contained in:
rui hildt 2020-05-01 11:47:12 +02:00
parent b4fe998575
commit 55d0b8a568
1 changed files with 3 additions and 2 deletions

View File

@ -403,7 +403,7 @@ A json object for the specified meeting with an array of `participant`.
| :------------ | :-------- | :-------------------------- |
| id | int | primary key, auto-increment |
| meeting_id | varchar | foreign key, required |
| possible_date | date | foreign key, required |
| possible_date | date | required |
#### Add a possible date
@ -466,7 +466,8 @@ A json object for the deleted possible date with `id`, `meeting_id` and `possibl
| field | data type | metadata |
| :------------ | :-------- | :-------------------------- |
| account_id | int | primary key, auto-increment |
| id | int | primary key, auto-increment |
| account_id | varchar | required |
| meeting_id | varchar | required |
| earliest_time | datetime | |
| latest_time | datetime | |