11 lines
197 B
MySQL
11 lines
197 B
MySQL
|
-- 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
|