status-go/appdatabase/migrations/sql/0016_local_notifications_preferences.up.sql
Gheorghe Pinzaru d04e54e54e
Local notifications service (#2026)
Also adds implementation for eth transactions notifications
2020-10-28 10:56:14 +03:00

7 lines
204 B
SQL

CREATE TABLE local_notifications_preferences (
service VARCHAR,
event VARCHAR,
identifier VARCHAR,
enabled BOOLEAN DEFAULT false,
PRIMARY KEY(service,event,identifier)
) WITHOUT ROWID;