mirror of
https://github.com/kristoferssolo/zero2prod.git
synced 2025-10-21 20:10:40 +00:00
9 lines
199 B
SQL
9 lines
199 B
SQL
-- Add migration script here
|
|
CREATE TABLE SUBSCRIPTIONS (
|
|
"id" uuid PRIMARY KEY NOT NULL,
|
|
"email" text NOT NULL UNIQUE,
|
|
"name" text NOT NULL,
|
|
"subscribed_at" timestamptz NOT NULL
|
|
);
|
|
|