ztp/db/migrations/20230322174957_create_subsc...

11 lines
197 B
SQL

-- migrate:up
create table subscriptions (
id uuid not null,
primary key (id),
email text not null unique,
name text not null,
subscribed_at timestamptz not null
);
-- migrate:down