feat: add configurability
This commit is contained in:
parent
89ea0995bb
commit
8257255dc2
10 changed files with 1406 additions and 26 deletions
8
migrations/20231231135920_create_subscriptions_table.sql
Normal file
8
migrations/20231231135920_create_subscriptions_table.sql
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
-- Create Subscriptions Table
|
||||
CREATE TABLE subscriptions (
|
||||
id UUID NOT NULL,
|
||||
PRIMARY KEY (id),
|
||||
email TEXT NOT NULL UNIQUE,
|
||||
name TEXT NOT NULL,
|
||||
subscribed_at TIMESTAMPTZ NOT NULL
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue