1

fix schema

Co-authored-by: Christoph <tobi@urpost.de>
This commit is contained in:
Christoph
2020-03-27 13:15:05 +01:00
parent 56a81ce66f
commit 8c29d04740

View File

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