mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
7 lines
204 B
MySQL
7 lines
204 B
MySQL
|
CREATE TABLE local_notifications_preferences (
|
||
|
service VARCHAR,
|
||
|
event VARCHAR,
|
||
|
identifier VARCHAR,
|
||
|
enabled BOOLEAN DEFAULT false,
|
||
|
PRIMARY KEY(service,event,identifier)
|
||
|
) WITHOUT ROWID;
|