We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40ca32d commit e691e75Copy full SHA for e691e75
migrations/2017-10-09-135625_add_lower_gh_login_index/down.sql
@@ -0,0 +1,2 @@
1
+DROP INDEX IF EXISTS lower_gh_login;
2
+CREATE INDEX index_users_gh_login ON users (gh_login);
migrations/2017-10-09-135625_add_lower_gh_login_index/up.sql
+DROP INDEX IF EXISTS index_users_gh_login;
+CREATE INDEX lower_gh_login ON users (lower(gh_login));
0 commit comments