2019-09-27 02:19:24 -04:00
|
|
|
-- Write your migrate up statements here
|
|
|
|
|
2019-09-29 01:16:34 -04:00
|
|
|
CREATE TABLE public.users (
|
|
|
|
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
|
|
|
full_name text,
|
|
|
|
email text UNIQUE NOT NULL CHECK (length(email) < 255),
|
|
|
|
created_at timestamptz NOT NULL NOT NULL DEFAULT NOW(),
|
|
|
|
updated_at timestamptz NOT NULL NOT NULL DEFAULT NOW()
|
|
|
|
);
|
2019-09-27 02:19:24 -04:00
|
|
|
|
|
|
|
---- create above / drop below ----
|
|
|
|
|
2019-10-04 22:20:54 -04:00
|
|
|
-- Write your down migrate statements here. If this migration is irreversible
|
|
|
|
-- then delete the separator line above.
|
|
|
|
|
|
|
|
DROP TABLE public.users
|
2019-09-27 02:19:24 -04:00
|
|
|
|