Skip to content

Commit 044d362

Browse files
committed
db: add migration to create subscription_tokens table
1 parent 8d96145 commit 044d362

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Add migration script here
2+
3+
CREATE TABLE subscription_tokens (
4+
subscription_token TEXT NOT NULL,
5+
subscriber_id UUID NOT NULL REFERENCES subscriptions (id),
6+
PRIMARY KEY (subscription_token)
7+
);

0 commit comments

Comments
 (0)