Add users

This commit is contained in:
2022-02-13 21:45:27 +01:00
parent e03efbf09c
commit 3e843d429a
11 changed files with 326 additions and 28 deletions

View File

@@ -0,0 +1,10 @@
-- Write your migrate up statements here
create unique index users_unique_index
on users(email);
---- create above / drop below ----
drop index users_unique_index;
-- Write your migrate down statements here. If this migration is irreversible
-- Then delete the separator line above.