status-im/status-go

View on GitHub
protocol/pushnotificationserver/migrations/sql/1598419937_add_push_notifications_table.up.sql

Summary

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