mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
5 lines
164 B
MySQL
5 lines
164 B
MySQL
|
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
|
||
|
);
|