support dynamic updates of forum for bulk update requests
This commit is contained in:
@@ -892,7 +892,8 @@ CREATE TABLE bulk_update_requests (
|
||||
created_at timestamp without time zone,
|
||||
updated_at timestamp without time zone,
|
||||
approver_id integer,
|
||||
forum_post_id integer
|
||||
forum_post_id integer,
|
||||
title text
|
||||
);
|
||||
|
||||
|
||||
@@ -7220,6 +7221,13 @@ CREATE UNIQUE INDEX index_wiki_pages_on_title ON wiki_pages USING btree (title);
|
||||
CREATE INDEX index_wiki_pages_on_title_pattern ON wiki_pages USING btree (title text_pattern_ops);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_wiki_pages_on_updated_at; Type: INDEX; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE INDEX index_wiki_pages_on_updated_at ON wiki_pages USING btree (updated_at);
|
||||
|
||||
|
||||
--
|
||||
-- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -
|
||||
--
|
||||
@@ -7565,5 +7573,9 @@ INSERT INTO schema_migrations (version) VALUES ('20170316224630');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20170319000519');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20170329185605');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20170330230231');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20170413000209');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user