mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
7 lines
208 B
MySQL
7 lines
208 B
MySQL
|
CREATE TABLE IF NOT EXISTS communities_archive_info (
|
||
|
community_id TEXT PRIMARY KEY ON CONFLICT REPLACE,
|
||
|
magnetlink_clock INT NOT NULL DEFAULT 0,
|
||
|
last_message_archive_end_date INT NOT NULL DEFAULT 0
|
||
|
)
|
||
|
|