feat: add subscription_tokens table

This commit is contained in:
Sandro Eiler 2024-03-04 21:25:55 +01:00
parent 5082db095a
commit 6dfc9a0f3e

View file

@ -0,0 +1,6 @@
-- Create Subscription Tokens Table
CREATE TABLE subscription_tokens(
subscription_token TEXT NOT NULL,
subscriber_id uuid NOT NULL REFERENCES subscriptions (id),
PRIMARY KEY (subscription_token)
);