cron, db, cache and migrations
This commit is contained in:
9
migrations/001_create_users.sql
Normal file
9
migrations/001_create_users.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
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;
|
Reference in New Issue
Block a user