mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
0919a87588
chore: - add CommunityEventsMessage - refactor community_admin_event to accept a list of events and patch a CommunityDescription - save/read community events into/from database - publish and handle community events message - fixed admin category tests - rename AdminEvent to Events or CommunityEvents
5 lines
164 B
SQL
5 lines
164 B
SQL
CREATE TABLE IF NOT EXISTS communities_events (
|
|
id BLOB NOT NULL PRIMARY KEY ON CONFLICT REPLACE,
|
|
raw_events BLOB NOT NULL,
|
|
raw_description BLOB NOT NULL
|
|
); |