status-go/protocol/pushnotificationserver/migrations/sql/1598419937_add_push_notifications_table.up.sql
2020-08-27 18:54:29 +02:00

5 lines
104 B
SQL

CREATE TABLE IF NOT EXISTS push_notification_server_notifications (
id BLOB NOT NULL,
UNIQUE(id)
);