mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
f25088483c
* feat: Add seen/unseen activity center state * feat: ActivityCenterState for grouping ActivityCenter unread messages cnt and seen state * feat: always use messenger's addActivityCenterNotification & add state to the response * Remove unused activity center endpoints form api and fix test
6 lines
136 B
SQL
6 lines
136 B
SQL
CREATE TABLE IF NOT EXISTS activity_center_states (
|
|
has_seen BOOLEAN
|
|
);
|
|
|
|
INSERT INTO activity_center_states ("has_seen") VALUES (1);
|