10 lines
173 B
MySQL
10 lines
173 B
MySQL
|
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;
|