mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
7 lines
206 B
MySQL
7 lines
206 B
MySQL
|
CREATE TABLE communities_settings (
|
||
|
community_id TEXT PRIMARY KEY ON CONFLICT REPLACE,
|
||
|
message_archive_seeding_enabled BOOLEAN DEFAULT FALSE,
|
||
|
message_archive_fetching_enabled BOOLEAN DEFAULT FALSE
|
||
|
)
|
||
|
|