Migration.

This commit is contained in:
LukeMathWalker 2021-03-11 22:09:47 +00:00
parent a8f1bc9024
commit 915a227fd9

View file

@ -1 +1,7 @@
-- Add migration script here
-- Create Subscription Tokens Table
CREATE TABLE subscription_tokens(
subscription_token uuid NOT NULL,
subscriber_id uuid NOT NULL
REFERENCES subscriptions (id),
PRIMARY KEY (subscription_token),
);