serverctl/migrations/001_create_users.sql

10 lines
173 B
MySQL
Raw Normal View History

2022-02-13 18:09:26 +01:00
create table users(
id serial primary key,
email varchar(320) not null,
password_hash varchar(256) not null
);
---- create above / drop below ----
drop table users;