status-go/protocol/migrations/sqlite/1708423707_applied_communit...

6 lines
201 B
SQL

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
);