db: add reason index on post_flags, post_appeals.

This commit is contained in:
evazion
2017-04-16 21:06:22 -05:00
parent cf9b67efb7
commit fb0a8e8600
2 changed files with 29 additions and 0 deletions

View File

@@ -6836,6 +6836,13 @@ CREATE INDEX index_post_appeals_on_creator_ip_addr ON post_appeals USING btree (
CREATE INDEX index_post_appeals_on_post_id ON post_appeals USING btree (post_id);
--
-- Name: index_post_appeals_on_reason_tsvector; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_post_appeals_on_reason_tsvector ON post_appeals USING gin (to_tsvector('english'::regconfig, reason));
--
-- Name: index_post_approvals_on_post_id; Type: INDEX; Schema: public; Owner: -
--
@@ -6885,6 +6892,13 @@ CREATE INDEX index_post_flags_on_creator_ip_addr ON post_flags USING btree (crea
CREATE INDEX index_post_flags_on_post_id ON post_flags USING btree (post_id);
--
-- Name: index_post_flags_on_reason_tsvector; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_post_flags_on_reason_tsvector ON post_flags USING gin (to_tsvector('english'::regconfig, reason));
--
-- Name: index_post_votes_on_post_id; Type: INDEX; Schema: public; Owner: -
--
@@ -7583,3 +7597,5 @@ INSERT INTO schema_migrations (version) VALUES ('20170414005856');
INSERT INTO schema_migrations (version) VALUES ('20170414233426');
INSERT INTO schema_migrations (version) VALUES ('20170416224142');