Skip to content

Commit da1ad56

Browse files
committed
feat: add premium tiers table
1 parent 73b2f0c commit da1ad56

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
-- +goose Up
2+
-- +goose StatementBegin
3+
4+
CREATE TABLE IF NOT EXISTS premium_tiers (
5+
purchase_id VARCHAR(255) NOT NULL,
6+
tier_id VARCHAR(255) NOT NULL,
7+
PRIMARY KEY (purchase_id)
8+
);
9+
10+
-- +goose StatementEnd
11+
12+
-- +goose Down
13+
-- +goose StatementBegin
14+
15+
DROP TABLE IF EXISTS premium_tiers;
16+
17+
-- +goose StatementEnd

0 commit comments

Comments
 (0)