Commit c36a46ef authored by Małgorzata Ksionek's avatar Małgorzata Ksionek

Fix failing pipeline

parent c4ea1663
......@@ -30,6 +30,6 @@ class ScheduleUpdateExistingUsersThatRequireTwoFactorAuth < ActiveRecord::Migrat
end
def down
remove_concurrent_index :users, INDEX_NAME
remove_concurrent_index_by_name :users, INDEX_NAME
end
end
......@@ -22038,6 +22038,8 @@ CREATE INDEX index_users_on_name_trigram ON users USING gin (name gin_trgm_ops);
CREATE INDEX index_users_on_public_email ON users USING btree (public_email) WHERE ((public_email)::text <> ''::text);
CREATE INDEX index_users_on_require_two_factor_authentication_from_group ON users USING btree (require_two_factor_authentication_from_group);
CREATE UNIQUE INDEX index_users_on_reset_password_token ON users USING btree (reset_password_token);
CREATE INDEX index_users_on_state ON users USING btree (state);
......@@ -22228,8 +22230,6 @@ CREATE INDEX snippet_repositories_verification_checksum_partial ON snippet_repos
CREATE INDEX snippet_repositories_verification_failure_partial ON snippet_repositories USING btree (verification_failure) WHERE (verification_failure IS NOT NULL);
CREATE INDEX index_users_on_require_two_factor_authentication_from_group ON users USING btree (require_two_factor_authentication_from_group);
CREATE UNIQUE INDEX snippet_user_mentions_on_snippet_id_and_note_id_index ON snippet_user_mentions USING btree (snippet_id, note_id);
CREATE UNIQUE INDEX snippet_user_mentions_on_snippet_id_index ON snippet_user_mentions USING btree (snippet_id) WHERE (note_id IS NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment