1

entrypoint

Co-authored-by: Christoph <tobi@urpost.de>
This commit is contained in:
Christoph
2020-03-26 16:35:31 +01:00
parent f15d1f850d
commit 666bab0c03
2 changed files with 9 additions and 1 deletions

2
.gitignore vendored
View File

@ -33,4 +33,4 @@ out/
.floo
.flooignore
/mysql/*
/mysql/db/storage/

View File

@ -0,0 +1,8 @@
CREATE TABLE event
(
event_id INT PRIMARY KEY AUTO_INCREMENT,
group_id VARCHAR(36) NOT NULL,
user_id VARCHAR(50),
event_type VARCHAR(36),
event_payload JSON
);