summaryrefslogtreecommitdiff
path: root/migrations/20251009021241_push_subscriptions.sql
blob: b42d1229f793ee0d1600fd8d50fee5f6c845e46e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
create table push_subscription (
    endpoint text
        primary key
        not null,
    token text
        not null
        references token (id),
    p256dh text
        not null,
    auth text
        not null
);