Files
schedule-parser-rusted/migrations/2025-03-21-212723_create_fcm/up.sql

6 lines
206 B
SQL

CREATE TABLE fcm
(
user_id text PRIMARY KEY NOT NULL REFERENCES users (id),
token text NOT NULL,
topics text[] NOT NULL CHECK ( array_position(topics, null) is null )
);