Commit 1109cbcc authored by Toon Claes's avatar Toon Claes

Merge branch 're-47193-fix-partial-index-in-structure-sql' into 'master'

Add missing condition for partial index

See merge request gitlab-org/gitlab!48302
parents ffe8fa2a d53cfe25
......@@ -22319,7 +22319,7 @@ 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 INDEX index_users_on_require_two_factor_authentication_from_group ON users USING btree (require_two_factor_authentication_from_group) WHERE (require_two_factor_authentication_from_group = true);
CREATE UNIQUE INDEX index_users_on_reset_password_token ON users USING btree (reset_password_token);
......
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