zero2prod/migrations/20240323135723_create_subscribtions_table.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
);