mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
11db9f2119
A migration was added out-of-order, which meant that in clients who had already run the migration after, it would be skip. This commit re-adds the migration so it's run, tested against an empty account and one that had already migrated.
7 lines
178 B
SQL
7 lines
178 B
SQL
CREATE TABLE IF NOT EXISTS activity_center_states (
|
|
has_seen BOOLEAN
|
|
);
|
|
|
|
INSERT INTO activity_center_states SELECT 1 WHERE NOT EXISTS(SELECT 1 FROM activity_center_states);
|
|
|