11 lines
300 B
SQL
11 lines
300 B
SQL
-- Write your migrate up statements here
|
|
create unique index user_email_unique_index
|
|
on sctl_user(email);
|
|
|
|
---- create above / drop below ----
|
|
|
|
drop index user_email_unique_index;
|
|
|
|
-- Write your migrate down statements here. If this migration is irreversible
|
|
-- Then delete the separator line above.
|