mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
ad326fa290
Allows runnning a store node depending on node config settings.
6 lines
269 B
SQL
6 lines
269 B
SQL
ALTER TABLE wakuv2_config ADD COLUMN enable_store BOOLEAN DEFAULT false;
|
|
ALTER TABLE wakuv2_config ADD COLUMN store_capacity INT;
|
|
ALTER TABLE wakuv2_config ADD COLUMN store_seconds INT;
|
|
|
|
UPDATE wakuv2_config SET enable_store = 0, store_capacity = 0, store_seconds = 0;
|