mirror of
https://github.com/kristoferssolo/zero2prod.git
synced 2025-10-21 20:10:40 +00:00
8 lines
190 B
SQL
8 lines
190 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
|
|
);
|