2
.gitignore
vendored
2
.gitignore
vendored
@ -33,4 +33,4 @@ out/
|
|||||||
.floo
|
.floo
|
||||||
.flooignore
|
.flooignore
|
||||||
|
|
||||||
/mysql/*
|
/mysql/db/storage/
|
||||||
|
8
mysql/db/entrypoint/schema.sql
Normal file
8
mysql/db/entrypoint/schema.sql
Normal 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
|
||||||
|
);
|
Reference in New Issue
Block a user