serverctl/migrations/001_create_users.sql

11 lines
237 B
MySQL
Raw Normal View History

2022-02-14 01:25:36 +01:00
create table sctl_user
(
id int GENERATED BY DEFAULT AS IDENTITY primary key,
email varchar(320) not null,
password_hash varchar(256) not null
2022-02-13 18:09:26 +01:00
);
---- create above / drop below ----
2022-02-14 01:25:36 +01:00
drop table sctl_user;