1

schema fix + repo + dto

Co-authored-by: [Mahgs] <maxoerter@gmx.de>
Co-authored-by: Christoph <tobi@urpost.de>
This commit is contained in:
Christoph
2020-03-26 16:41:18 +01:00
parent 666bab0c03
commit d336c10802
4 changed files with 32 additions and 5 deletions

View File

@ -6,3 +6,10 @@ CREATE TABLE event
event_type VARCHAR(36),
event_payload JSON
);
CREATE TABLE invite
(
invite_id INT PRIMARY KEY AUTO_INCREMENT,
group_id VARCHAR(36) NOT NULL,
invite_link VARCHAR(36) NOT NULL
);