remove_concurrent_index_by_name:notification_settings,INDEX_WITH_SOURCE_NAME# Above index expands this index
remove_concurrent_index_by_name:notification_settings,INDEX_WITH_USER_NAME# It is redundant as we already have unique index on (user_id, source_id, source_type)
@@ -23220,9 +23220,7 @@ CREATE INDEX index_notes_on_project_id_and_noteable_type ON notes USING btree (p
CREATE INDEX index_notes_on_review_id ON notes USING btree (review_id);
CREATE INDEX index_notification_settings_on_source_id_and_source_type ON notification_settings USING btree (source_id, source_type);
CREATE INDEX index_notification_settings_on_user_id ON notification_settings USING btree (user_id);
CREATE INDEX index_notification_settings_on_source_and_level_and_user ON notification_settings USING btree (source_id, source_type, level, user_id);
CREATE UNIQUE INDEX index_notifications_on_user_id_and_source_id_and_source_type ON notification_settings USING btree (user_id, source_id, source_type);