feat: add subscription_tokens table
This commit is contained in:
parent
5082db095a
commit
6dfc9a0f3e
1 changed files with 6 additions and 0 deletions
|
|
@ -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)
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue