X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a0b665faf71b671eed57493a899f6ffc8b82ddc5..f11221f05bcdd05edd7a9f97d6d57e7baaeb4921:/db/structure.sql diff --git a/db/structure.sql b/db/structure.sql index cdf4fb7dc..48fedeba5 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -1,12 +1,6 @@ --- --- PostgreSQL database dump --- - --- Dumped from database version 9.5.7 --- Dumped by pg_dump version 9.5.7 - SET statement_timeout = 0; SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SET check_function_bodies = false; @@ -66,6 +60,17 @@ CREATE TYPE gpx_visibility_enum AS ENUM ( ); +-- +-- Name: issue_status_enum; Type: TYPE; Schema: public; Owner: - +-- + +CREATE TYPE issue_status_enum AS ENUM ( + 'open', + 'ignored', + 'resolved' +); + + -- -- Name: note_event_enum; Type: TYPE; Schema: public; Owner: - -- @@ -691,10 +696,9 @@ ALTER SEQUENCE gpx_files_id_seq OWNED BY gpx_files.id; CREATE TABLE issue_comments ( id integer NOT NULL, - issue_id integer, - commenter_user_id integer, - body text, - reassign boolean, + issue_id integer NOT NULL, + user_id integer NOT NULL, + body text NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); @@ -727,15 +731,15 @@ CREATE TABLE issues ( id integer NOT NULL, reportable_type character varying NOT NULL, reportable_id integer NOT NULL, - reported_user_id integer NOT NULL, - status integer, - issue_type character varying, + reported_user_id integer, + status issue_status_enum DEFAULT 'open'::public.issue_status_enum NOT NULL, + assigned_role user_role_enum NOT NULL, resolved_at timestamp without time zone, resolved_by integer, updated_by integer, + reports_count integer DEFAULT 0, created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL, - reports_count integer DEFAULT 0 + updated_at timestamp without time zone NOT NULL ); @@ -1065,9 +1069,10 @@ CREATE TABLE relations ( CREATE TABLE reports ( id integer NOT NULL, - issue_id integer, - reporter_user_id integer, - details text, + issue_id integer NOT NULL, + user_id integer NOT NULL, + details text NOT NULL, + category character varying NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); @@ -1249,7 +1254,8 @@ CREATE TABLE users ( diary_entries_count integer DEFAULT 0 NOT NULL, image_use_gravatar boolean DEFAULT false NOT NULL, image_content_type character varying(255), - auth_provider character varying + auth_provider character varying(255), + home_tile bigint ); @@ -1311,182 +1317,182 @@ CREATE TABLE ways ( -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: acls id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY acls ALTER COLUMN id SET DEFAULT nextval('acls_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: changeset_comments id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY changeset_comments ALTER COLUMN id SET DEFAULT nextval('changeset_comments_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: changesets id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY changesets ALTER COLUMN id SET DEFAULT nextval('changesets_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: client_applications id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY client_applications ALTER COLUMN id SET DEFAULT nextval('client_applications_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: current_nodes id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY current_nodes ALTER COLUMN id SET DEFAULT nextval('current_nodes_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: current_relations id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY current_relations ALTER COLUMN id SET DEFAULT nextval('current_relations_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: current_ways id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY current_ways ALTER COLUMN id SET DEFAULT nextval('current_ways_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: diary_comments id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY diary_comments ALTER COLUMN id SET DEFAULT nextval('diary_comments_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: diary_entries id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY diary_entries ALTER COLUMN id SET DEFAULT nextval('diary_entries_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: friends id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY friends ALTER COLUMN id SET DEFAULT nextval('friends_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: gpx_file_tags id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY gpx_file_tags ALTER COLUMN id SET DEFAULT nextval('gpx_file_tags_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: gpx_files id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY gpx_files ALTER COLUMN id SET DEFAULT nextval('gpx_files_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: issue_comments id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY issue_comments ALTER COLUMN id SET DEFAULT nextval('issue_comments_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: issues id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY issues ALTER COLUMN id SET DEFAULT nextval('issues_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: messages id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY messages ALTER COLUMN id SET DEFAULT nextval('messages_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: note_comments id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY note_comments ALTER COLUMN id SET DEFAULT nextval('note_comments_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: notes id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY notes ALTER COLUMN id SET DEFAULT nextval('notes_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: oauth_nonces id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY oauth_nonces ALTER COLUMN id SET DEFAULT nextval('oauth_nonces_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: oauth_tokens id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY oauth_tokens ALTER COLUMN id SET DEFAULT nextval('oauth_tokens_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: redactions id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY redactions ALTER COLUMN id SET DEFAULT nextval('redactions_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: reports id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY reports ALTER COLUMN id SET DEFAULT nextval('reports_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: user_blocks id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY user_blocks ALTER COLUMN id SET DEFAULT nextval('user_blocks_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: user_roles id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY user_roles ALTER COLUMN id SET DEFAULT nextval('user_roles_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: user_tokens id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY user_tokens ALTER COLUMN id SET DEFAULT nextval('user_tokens_id_seq'::regclass); -- --- Name: id; Type: DEFAULT; Schema: public; Owner: - +-- Name: users id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass); -- --- Name: acls_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: acls acls_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY acls @@ -1494,7 +1500,7 @@ ALTER TABLE ONLY acls -- --- Name: ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY ar_internal_metadata @@ -1502,7 +1508,7 @@ ALTER TABLE ONLY ar_internal_metadata -- --- Name: changeset_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: changeset_comments changeset_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY changeset_comments @@ -1510,7 +1516,7 @@ ALTER TABLE ONLY changeset_comments -- --- Name: changesets_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: changesets changesets_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY changesets @@ -1518,7 +1524,7 @@ ALTER TABLE ONLY changesets -- --- Name: client_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: client_applications client_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY client_applications @@ -1526,7 +1532,7 @@ ALTER TABLE ONLY client_applications -- --- Name: current_node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: current_node_tags current_node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_node_tags @@ -1534,7 +1540,7 @@ ALTER TABLE ONLY current_node_tags -- --- Name: current_nodes_pkey1; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: current_nodes current_nodes_pkey1; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_nodes @@ -1542,7 +1548,7 @@ ALTER TABLE ONLY current_nodes -- --- Name: current_relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: current_relation_members current_relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_relation_members @@ -1550,7 +1556,7 @@ ALTER TABLE ONLY current_relation_members -- --- Name: current_relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: current_relation_tags current_relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_relation_tags @@ -1558,7 +1564,7 @@ ALTER TABLE ONLY current_relation_tags -- --- Name: current_relations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: current_relations current_relations_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_relations @@ -1566,7 +1572,7 @@ ALTER TABLE ONLY current_relations -- --- Name: current_way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: current_way_nodes current_way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_way_nodes @@ -1574,7 +1580,7 @@ ALTER TABLE ONLY current_way_nodes -- --- Name: current_way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: current_way_tags current_way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_way_tags @@ -1582,7 +1588,7 @@ ALTER TABLE ONLY current_way_tags -- --- Name: current_ways_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: current_ways current_ways_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_ways @@ -1590,7 +1596,7 @@ ALTER TABLE ONLY current_ways -- --- Name: diary_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: diary_comments diary_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY diary_comments @@ -1598,7 +1604,7 @@ ALTER TABLE ONLY diary_comments -- --- Name: diary_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: diary_entries diary_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY diary_entries @@ -1606,7 +1612,7 @@ ALTER TABLE ONLY diary_entries -- --- Name: diary_entry_subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: diary_entry_subscriptions diary_entry_subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY diary_entry_subscriptions @@ -1614,7 +1620,7 @@ ALTER TABLE ONLY diary_entry_subscriptions -- --- Name: friends_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: friends friends_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY friends @@ -1622,7 +1628,7 @@ ALTER TABLE ONLY friends -- --- Name: gpx_file_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: gpx_file_tags gpx_file_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY gpx_file_tags @@ -1630,7 +1636,7 @@ ALTER TABLE ONLY gpx_file_tags -- --- Name: gpx_files_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: gpx_files gpx_files_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY gpx_files @@ -1638,7 +1644,7 @@ ALTER TABLE ONLY gpx_files -- --- Name: issue_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: issue_comments issue_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY issue_comments @@ -1646,7 +1652,7 @@ ALTER TABLE ONLY issue_comments -- --- Name: issues_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: issues issues_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY issues @@ -1654,7 +1660,7 @@ ALTER TABLE ONLY issues -- --- Name: languages_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: languages languages_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY languages @@ -1662,7 +1668,7 @@ ALTER TABLE ONLY languages -- --- Name: messages_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: messages messages_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY messages @@ -1670,7 +1676,7 @@ ALTER TABLE ONLY messages -- --- Name: node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: node_tags node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY node_tags @@ -1678,7 +1684,7 @@ ALTER TABLE ONLY node_tags -- --- Name: nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: nodes nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY nodes @@ -1686,7 +1692,7 @@ ALTER TABLE ONLY nodes -- --- Name: note_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: note_comments note_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY note_comments @@ -1694,7 +1700,7 @@ ALTER TABLE ONLY note_comments -- --- Name: notes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: notes notes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY notes @@ -1702,7 +1708,7 @@ ALTER TABLE ONLY notes -- --- Name: oauth_nonces_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: oauth_nonces oauth_nonces_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY oauth_nonces @@ -1710,7 +1716,7 @@ ALTER TABLE ONLY oauth_nonces -- --- Name: oauth_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: oauth_tokens oauth_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY oauth_tokens @@ -1718,7 +1724,7 @@ ALTER TABLE ONLY oauth_tokens -- --- Name: redactions_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: redactions redactions_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY redactions @@ -1726,7 +1732,7 @@ ALTER TABLE ONLY redactions -- --- Name: relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: relation_members relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY relation_members @@ -1734,7 +1740,7 @@ ALTER TABLE ONLY relation_members -- --- Name: relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: relation_tags relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY relation_tags @@ -1742,7 +1748,7 @@ ALTER TABLE ONLY relation_tags -- --- Name: relations_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: relations relations_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY relations @@ -1750,7 +1756,7 @@ ALTER TABLE ONLY relations -- --- Name: reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: reports reports_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY reports @@ -1758,7 +1764,7 @@ ALTER TABLE ONLY reports -- --- Name: user_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: user_blocks user_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_blocks @@ -1766,7 +1772,7 @@ ALTER TABLE ONLY user_blocks -- --- Name: user_preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: user_preferences user_preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_preferences @@ -1774,7 +1780,7 @@ ALTER TABLE ONLY user_preferences -- --- Name: user_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: user_roles user_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_roles @@ -1782,7 +1788,7 @@ ALTER TABLE ONLY user_roles -- --- Name: user_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: user_tokens user_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_tokens @@ -1790,7 +1796,7 @@ ALTER TABLE ONLY user_tokens -- --- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY users @@ -1798,7 +1804,7 @@ ALTER TABLE ONLY users -- --- Name: way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: way_nodes way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY way_nodes @@ -1806,7 +1812,7 @@ ALTER TABLE ONLY way_nodes -- --- Name: way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: way_tags way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY way_tags @@ -1814,7 +1820,7 @@ ALTER TABLE ONLY way_tags -- --- Name: ways_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: ways ways_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY ways @@ -2032,24 +2038,31 @@ CREATE INDEX index_diary_entry_subscriptions_on_diary_entry_id ON diary_entry_su -- --- Name: index_issue_comments_on_commenter_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: index_issue_comments_on_issue_id; Type: INDEX; Schema: public; Owner: - -- -CREATE INDEX index_issue_comments_on_commenter_user_id ON issue_comments USING btree (commenter_user_id); +CREATE INDEX index_issue_comments_on_issue_id ON issue_comments USING btree (issue_id); -- --- Name: index_issue_comments_on_issue_id; Type: INDEX; Schema: public; Owner: - +-- Name: index_issue_comments_on_user_id; Type: INDEX; Schema: public; Owner: - -- -CREATE INDEX index_issue_comments_on_issue_id ON issue_comments USING btree (issue_id); +CREATE INDEX index_issue_comments_on_user_id ON issue_comments USING btree (user_id); + + +-- +-- Name: index_issues_on_assigned_role; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_issues_on_assigned_role ON issues USING btree (assigned_role); -- --- Name: index_issues_on_reportable_id_and_reportable_type; Type: INDEX; Schema: public; Owner: - +-- Name: index_issues_on_reportable_type_and_reportable_id; Type: INDEX; Schema: public; Owner: - -- -CREATE INDEX index_issues_on_reportable_id_and_reportable_type ON issues USING btree (reportable_id, reportable_type); +CREATE INDEX index_issues_on_reportable_type_and_reportable_id ON issues USING btree (reportable_type, reportable_id); -- @@ -2059,6 +2072,13 @@ CREATE INDEX index_issues_on_reportable_id_and_reportable_type ON issues USING b CREATE INDEX index_issues_on_reported_user_id ON issues USING btree (reported_user_id); +-- +-- Name: index_issues_on_status; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX index_issues_on_status ON issues USING btree (status); + + -- -- Name: index_issues_on_updated_by; Type: INDEX; Schema: public; Owner: - -- @@ -2109,10 +2129,10 @@ CREATE INDEX index_reports_on_issue_id ON reports USING btree (issue_id); -- --- Name: index_reports_on_reporter_user_id; Type: INDEX; Schema: public; Owner: - +-- Name: index_reports_on_user_id; Type: INDEX; Schema: public; Owner: - -- -CREATE INDEX index_reports_on_reporter_user_id ON reports USING btree (reporter_user_id); +CREATE INDEX index_reports_on_user_id ON reports USING btree (user_id); -- @@ -2290,6 +2310,13 @@ CREATE UNIQUE INDEX users_email_idx ON users USING btree (email); CREATE INDEX users_email_lower_idx ON users USING btree (lower((email)::text)); +-- +-- Name: users_home_idx; Type: INDEX; Schema: public; Owner: - +-- + +CREATE INDEX users_home_idx ON users USING btree (home_tile); + + -- -- Name: way_nodes_node_idx; Type: INDEX; Schema: public; Owner: - -- @@ -2312,7 +2339,7 @@ CREATE INDEX ways_timestamp_idx ON ways USING btree ("timestamp"); -- --- Name: changeset_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: changeset_comments changeset_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY changeset_comments @@ -2320,7 +2347,7 @@ ALTER TABLE ONLY changeset_comments -- --- Name: changeset_comments_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: changeset_comments changeset_comments_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY changeset_comments @@ -2328,7 +2355,7 @@ ALTER TABLE ONLY changeset_comments -- --- Name: changeset_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: changeset_tags changeset_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY changeset_tags @@ -2336,7 +2363,7 @@ ALTER TABLE ONLY changeset_tags -- --- Name: changesets_subscribers_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: changesets_subscribers changesets_subscribers_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY changesets_subscribers @@ -2344,7 +2371,7 @@ ALTER TABLE ONLY changesets_subscribers -- --- Name: changesets_subscribers_subscriber_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: changesets_subscribers changesets_subscribers_subscriber_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY changesets_subscribers @@ -2352,7 +2379,7 @@ ALTER TABLE ONLY changesets_subscribers -- --- Name: changesets_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: changesets changesets_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY changesets @@ -2360,7 +2387,7 @@ ALTER TABLE ONLY changesets -- --- Name: client_applications_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: client_applications client_applications_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY client_applications @@ -2368,7 +2395,7 @@ ALTER TABLE ONLY client_applications -- --- Name: current_node_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: current_node_tags current_node_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_node_tags @@ -2376,7 +2403,7 @@ ALTER TABLE ONLY current_node_tags -- --- Name: current_nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: current_nodes current_nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_nodes @@ -2384,7 +2411,7 @@ ALTER TABLE ONLY current_nodes -- --- Name: current_relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: current_relation_members current_relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_relation_members @@ -2392,7 +2419,7 @@ ALTER TABLE ONLY current_relation_members -- --- Name: current_relation_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: current_relation_tags current_relation_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_relation_tags @@ -2400,7 +2427,7 @@ ALTER TABLE ONLY current_relation_tags -- --- Name: current_relations_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: current_relations current_relations_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_relations @@ -2408,7 +2435,7 @@ ALTER TABLE ONLY current_relations -- --- Name: current_way_nodes_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: current_way_nodes current_way_nodes_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_way_nodes @@ -2416,7 +2443,7 @@ ALTER TABLE ONLY current_way_nodes -- --- Name: current_way_nodes_node_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: current_way_nodes current_way_nodes_node_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_way_nodes @@ -2424,7 +2451,7 @@ ALTER TABLE ONLY current_way_nodes -- --- Name: current_way_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: current_way_tags current_way_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_way_tags @@ -2432,7 +2459,7 @@ ALTER TABLE ONLY current_way_tags -- --- Name: current_ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: current_ways current_ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY current_ways @@ -2440,7 +2467,7 @@ ALTER TABLE ONLY current_ways -- --- Name: diary_comments_diary_entry_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: diary_comments diary_comments_diary_entry_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY diary_comments @@ -2448,7 +2475,7 @@ ALTER TABLE ONLY diary_comments -- --- Name: diary_comments_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: diary_comments diary_comments_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY diary_comments @@ -2456,7 +2483,7 @@ ALTER TABLE ONLY diary_comments -- --- Name: diary_entries_language_code_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: diary_entries diary_entries_language_code_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY diary_entries @@ -2464,7 +2491,7 @@ ALTER TABLE ONLY diary_entries -- --- Name: diary_entries_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: diary_entries diary_entries_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY diary_entries @@ -2472,7 +2499,7 @@ ALTER TABLE ONLY diary_entries -- --- Name: diary_entry_subscriptions_diary_entry_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: diary_entry_subscriptions diary_entry_subscriptions_diary_entry_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY diary_entry_subscriptions @@ -2480,7 +2507,7 @@ ALTER TABLE ONLY diary_entry_subscriptions -- --- Name: diary_entry_subscriptions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: diary_entry_subscriptions diary_entry_subscriptions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY diary_entry_subscriptions @@ -2488,7 +2515,7 @@ ALTER TABLE ONLY diary_entry_subscriptions -- --- Name: friends_friend_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: friends friends_friend_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY friends @@ -2496,7 +2523,7 @@ ALTER TABLE ONLY friends -- --- Name: friends_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: friends friends_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY friends @@ -2504,7 +2531,7 @@ ALTER TABLE ONLY friends -- --- Name: gps_points_gpx_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: gps_points gps_points_gpx_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY gps_points @@ -2512,7 +2539,7 @@ ALTER TABLE ONLY gps_points -- --- Name: gpx_file_tags_gpx_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: gpx_file_tags gpx_file_tags_gpx_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY gpx_file_tags @@ -2520,7 +2547,7 @@ ALTER TABLE ONLY gpx_file_tags -- --- Name: gpx_files_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: gpx_files gpx_files_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY gpx_files @@ -2528,39 +2555,47 @@ ALTER TABLE ONLY gpx_files -- --- Name: issue_comments_commenter_user_id; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: issue_comments issue_comments_issue_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY issue_comments - ADD CONSTRAINT issue_comments_commenter_user_id FOREIGN KEY (commenter_user_id) REFERENCES users(id) ON DELETE CASCADE; + ADD CONSTRAINT issue_comments_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES issues(id); -- --- Name: issue_comments_issue_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: issue_comments issue_comments_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY issue_comments - ADD CONSTRAINT issue_comments_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES issues(id) ON DELETE CASCADE; + ADD CONSTRAINT issue_comments_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id); + + +-- +-- Name: issues issues_reported_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY issues + ADD CONSTRAINT issues_reported_user_id_fkey FOREIGN KEY (reported_user_id) REFERENCES users(id); -- --- Name: issues_reported_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: issues issues_resolved_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY issues - ADD CONSTRAINT issues_reported_user_id_fkey FOREIGN KEY (reported_user_id) REFERENCES users(id) ON DELETE CASCADE; + ADD CONSTRAINT issues_resolved_by_fkey FOREIGN KEY (resolved_by) REFERENCES users(id); -- --- Name: issues_updated_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: issues issues_updated_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY issues - ADD CONSTRAINT issues_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES users(id) ON DELETE CASCADE; + ADD CONSTRAINT issues_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES users(id); -- --- Name: messages_from_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: messages messages_from_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY messages @@ -2568,7 +2603,7 @@ ALTER TABLE ONLY messages -- --- Name: messages_to_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: messages messages_to_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY messages @@ -2576,7 +2611,7 @@ ALTER TABLE ONLY messages -- --- Name: node_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: node_tags node_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY node_tags @@ -2584,7 +2619,7 @@ ALTER TABLE ONLY node_tags -- --- Name: nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: nodes nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY nodes @@ -2592,7 +2627,7 @@ ALTER TABLE ONLY nodes -- --- Name: nodes_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: nodes nodes_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY nodes @@ -2600,7 +2635,7 @@ ALTER TABLE ONLY nodes -- --- Name: note_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: note_comments note_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY note_comments @@ -2608,7 +2643,7 @@ ALTER TABLE ONLY note_comments -- --- Name: note_comments_note_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: note_comments note_comments_note_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY note_comments @@ -2616,7 +2651,7 @@ ALTER TABLE ONLY note_comments -- --- Name: oauth_tokens_client_application_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: oauth_tokens oauth_tokens_client_application_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY oauth_tokens @@ -2624,7 +2659,7 @@ ALTER TABLE ONLY oauth_tokens -- --- Name: oauth_tokens_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: oauth_tokens oauth_tokens_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY oauth_tokens @@ -2632,7 +2667,7 @@ ALTER TABLE ONLY oauth_tokens -- --- Name: redactions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: redactions redactions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY redactions @@ -2640,7 +2675,7 @@ ALTER TABLE ONLY redactions -- --- Name: relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: relation_members relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY relation_members @@ -2648,7 +2683,7 @@ ALTER TABLE ONLY relation_members -- --- Name: relation_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: relation_tags relation_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY relation_tags @@ -2656,7 +2691,7 @@ ALTER TABLE ONLY relation_tags -- --- Name: relations_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: relations relations_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY relations @@ -2664,7 +2699,7 @@ ALTER TABLE ONLY relations -- --- Name: relations_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: relations relations_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY relations @@ -2672,23 +2707,23 @@ ALTER TABLE ONLY relations -- --- Name: reports_issue_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: reports reports_issue_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY reports - ADD CONSTRAINT reports_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES issues(id) ON DELETE CASCADE; + ADD CONSTRAINT reports_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES issues(id); -- --- Name: reports_reporter_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: reports reports_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY reports - ADD CONSTRAINT reports_reporter_user_id_fkey FOREIGN KEY (reporter_user_id) REFERENCES users(id) ON DELETE CASCADE; + ADD CONSTRAINT reports_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id); -- --- Name: user_blocks_moderator_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: user_blocks user_blocks_moderator_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_blocks @@ -2696,7 +2731,7 @@ ALTER TABLE ONLY user_blocks -- --- Name: user_blocks_revoker_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: user_blocks user_blocks_revoker_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_blocks @@ -2704,7 +2739,7 @@ ALTER TABLE ONLY user_blocks -- --- Name: user_blocks_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: user_blocks user_blocks_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_blocks @@ -2712,7 +2747,7 @@ ALTER TABLE ONLY user_blocks -- --- Name: user_preferences_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: user_preferences user_preferences_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_preferences @@ -2720,7 +2755,7 @@ ALTER TABLE ONLY user_preferences -- --- Name: user_roles_granter_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: user_roles user_roles_granter_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_roles @@ -2728,7 +2763,7 @@ ALTER TABLE ONLY user_roles -- --- Name: user_roles_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: user_roles user_roles_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_roles @@ -2736,7 +2771,7 @@ ALTER TABLE ONLY user_roles -- --- Name: user_tokens_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: user_tokens user_tokens_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY user_tokens @@ -2744,7 +2779,7 @@ ALTER TABLE ONLY user_tokens -- --- Name: way_nodes_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: way_nodes way_nodes_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY way_nodes @@ -2752,7 +2787,7 @@ ALTER TABLE ONLY way_nodes -- --- Name: way_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: way_tags way_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY way_tags @@ -2760,7 +2795,7 @@ ALTER TABLE ONLY way_tags -- --- Name: ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: ways ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY ways @@ -2768,7 +2803,7 @@ ALTER TABLE ONLY ways -- --- Name: ways_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: ways ways_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY ways @@ -2831,11 +2866,10 @@ INSERT INTO "schema_migrations" (version) VALUES ('20150222101847'), ('20150818224516'), ('20160822153055'), -('20160822153115'), -('20160822153153'), ('20161002153425'), ('20161011010929'), ('20170222134109'), +('20180204153242'), ('21'), ('22'), ('23'),