Big changes, up to 3.8.5.5

This commit is contained in:
2023-08-31 23:57:30 +10:00
parent bd9f5a7819
commit 679e257f7b
15 changed files with 1021 additions and 39 deletions
@@ -0,0 +1,9 @@
-- migrations/{timestamp}_create_subscriptions_table.sql
-- 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
);