9 lines
154 B
SQL
9 lines
154 B
SQL
-- +migrate Up
|
|
CREATE table user (
|
|
id text PRIMARY KEY,
|
|
first_name text NOT NULL,
|
|
email text NOT NULL UNIQUE
|
|
);
|
|
|
|
-- +migrate Down
|
|
DROP TABLE users;
|