mirror of
https://github.com/status-im/status-go.git
synced 2025-01-26 22:50:40 +00:00
6 lines
201 B
MySQL
6 lines
201 B
MySQL
|
CREATE TABLE applied_community_events (
|
||
|
community_id TEXT NOT NULL,
|
||
|
event_type_id TEXT DEFAULT NULL,
|
||
|
clock INT NOT NULL,
|
||
|
PRIMARY KEY (community_id, event_type_id) ON CONFLICT REPLACE
|
||
|
);
|