2
0
mirror of https://github.com/status-im/status-go.git synced 2025-02-22 19:58:29 +00:00
status-go/protocol/migrations/sqlite/1689266326_create_communities_events_table.up.sql
Mykhailo Prakhov 0919a87588
chore: community admin events ()
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
2023-07-18 17:06:12 +02:00

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