-- PostgreSQL database dump
--
+-- Dumped from database version 9.5.3
+-- Dumped by pg_dump version 9.5.3
+
SET statement_timeout = 0;
+SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
+SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
SET search_path = public, pg_catalog;
+--
+-- Name: format_enum; Type: TYPE; Schema: public; Owner: -
+--
+
+CREATE TYPE format_enum AS ENUM (
+ 'html',
+ 'markdown',
+ 'text'
+);
+
+
--
-- Name: gpx_visibility_enum; Type: TYPE; Schema: public; Owner: -
--
CREATE FUNCTION maptile_for_point(bigint, bigint, integer) RETURNS integer
LANGUAGE c STRICT
- AS '/srv/www/openstreetbugs.osm.compton.nu/db/functions/libpgosm.so', 'maptile_for_point';
+ AS '$libdir/libpgosm', 'maptile_for_point';
--
CREATE FUNCTION tile_for_point(integer, integer) RETURNS bigint
LANGUAGE c STRICT
- AS '/srv/www/openstreetbugs.osm.compton.nu/db/functions/libpgosm.so', 'tile_for_point';
+ AS '$libdir/libpgosm', 'tile_for_point';
--
CREATE FUNCTION xid_to_int4(xid) RETURNS integer
LANGUAGE c IMMUTABLE STRICT
- AS '/srv/www/openstreetbugs.osm.compton.nu/db/functions/libpgosm.so', 'xid_to_int4';
+ AS '$libdir/libpgosm', 'xid_to_int4';
SET default_tablespace = '';
SET default_with_oids = false;
--
--- Name: acls; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: acls; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE acls (
--
--- Name: changeset_tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: changeset_comments; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE changeset_comments (
+ id integer NOT NULL,
+ changeset_id bigint NOT NULL,
+ author_id bigint NOT NULL,
+ body text NOT NULL,
+ created_at timestamp without time zone NOT NULL,
+ visible boolean NOT NULL
+);
+
+
+--
+-- Name: changeset_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
+--
+
+CREATE SEQUENCE changeset_comments_id_seq
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+--
+-- Name: changeset_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
+--
+
+ALTER SEQUENCE changeset_comments_id_seq OWNED BY changeset_comments.id;
+
+
+--
+-- Name: changeset_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE changeset_tags (
--
--- Name: changesets; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: changesets; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE changesets (
--
--- Name: client_applications; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: changesets_subscribers; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE changesets_subscribers (
+ subscriber_id bigint NOT NULL,
+ changeset_id bigint NOT NULL
+);
+
+
+--
+-- Name: client_applications; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE client_applications (
allow_write_diary boolean DEFAULT false NOT NULL,
allow_write_api boolean DEFAULT false NOT NULL,
allow_read_gpx boolean DEFAULT false NOT NULL,
- allow_write_gpx boolean DEFAULT false NOT NULL
+ allow_write_gpx boolean DEFAULT false NOT NULL,
+ allow_write_notes boolean DEFAULT false NOT NULL
);
--
--- Name: countries; Type: TABLE; Schema: public; Owner: -; Tablespace:
---
-
-CREATE TABLE countries (
- id integer NOT NULL,
- code character varying(2) NOT NULL,
- min_lat double precision NOT NULL,
- max_lat double precision NOT NULL,
- min_lon double precision NOT NULL,
- max_lon double precision NOT NULL
-);
-
-
---
--- Name: countries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
---
-
-CREATE SEQUENCE countries_id_seq
- START WITH 1
- INCREMENT BY 1
- NO MINVALUE
- NO MAXVALUE
- CACHE 1;
-
-
---
--- Name: countries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
---
-
-ALTER SEQUENCE countries_id_seq OWNED BY countries.id;
-
-
---
--- Name: current_node_tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: current_node_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_node_tags (
--
--- Name: current_nodes; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: current_nodes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_nodes (
--
--- Name: current_relation_members; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: current_relation_members; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_relation_members (
--
--- Name: current_relation_tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: current_relation_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_relation_tags (
--
--- Name: current_relations; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: current_relations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_relations (
--
--- Name: current_way_nodes; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: current_way_nodes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_way_nodes (
--
--- Name: current_way_tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: current_way_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_way_tags (
--
--- Name: current_ways; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: current_ways; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_ways (
--
--- Name: diary_comments; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: diary_comments; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE diary_comments (
body text NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
- visible boolean DEFAULT true NOT NULL
+ visible boolean DEFAULT true NOT NULL,
+ body_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
);
--
--- Name: diary_entries; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: diary_entries; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE diary_entries (
latitude double precision,
longitude double precision,
language_code character varying(255) DEFAULT 'en'::character varying NOT NULL,
- visible boolean DEFAULT true NOT NULL
+ visible boolean DEFAULT true NOT NULL,
+ body_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
);
--
--- Name: friends; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: friends; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE friends (
--
--- Name: gps_points; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: gps_points; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE gps_points (
--
--- Name: gpx_file_tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: gpx_file_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE gpx_file_tags (
--
--- Name: gpx_files; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: gpx_files; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE gpx_files (
--
--- Name: languages; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: languages; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE languages (
--
--- Name: messages; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: messages; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE messages (
message_read boolean DEFAULT false NOT NULL,
to_user_id bigint NOT NULL,
to_user_visible boolean DEFAULT true NOT NULL,
- from_user_visible boolean DEFAULT true NOT NULL
+ from_user_visible boolean DEFAULT true NOT NULL,
+ body_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
);
--
--- Name: node_tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: node_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE node_tags (
--
--- Name: nodes; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: nodes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE nodes (
visible boolean NOT NULL,
"timestamp" timestamp without time zone NOT NULL,
tile bigint NOT NULL,
- version bigint NOT NULL
+ version bigint NOT NULL,
+ redaction_id integer
);
--
--- Name: note_comments; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: note_comments; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE note_comments (
note_id bigint NOT NULL,
visible boolean NOT NULL,
created_at timestamp without time zone NOT NULL,
- author_name character varying(255),
- author_ip character varying(255),
+ author_ip inet,
author_id bigint,
body text,
event note_event_enum
--
--- Name: notes; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: notes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE notes (
tile bigint NOT NULL,
updated_at timestamp without time zone NOT NULL,
created_at timestamp without time zone NOT NULL,
- nearby_place character varying(255),
status note_status_enum NOT NULL,
closed_at timestamp without time zone
);
--
--- Name: oauth_nonces; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: oauth_nonces; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE oauth_nonces (
--
--- Name: oauth_tokens; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: oauth_tokens; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE oauth_tokens (
callback_url character varying(255),
verifier character varying(20),
scope character varying(255),
- valid_to timestamp without time zone
+ valid_to timestamp without time zone,
+ allow_write_notes boolean DEFAULT false NOT NULL
);
--
--- Name: relation_members; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: redactions; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE redactions (
+ id integer NOT NULL,
+ title character varying(255),
+ description text,
+ created_at timestamp without time zone NOT NULL,
+ updated_at timestamp without time zone NOT NULL,
+ user_id bigint NOT NULL,
+ description_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
+);
+
+
+--
+-- Name: redactions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
+--
+
+CREATE SEQUENCE redactions_id_seq
+ START WITH 1
+ INCREMENT BY 1
+ NO MINVALUE
+ NO MAXVALUE
+ CACHE 1;
+
+
+--
+-- Name: redactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
+--
+
+ALTER SEQUENCE redactions_id_seq OWNED BY redactions.id;
+
+
+--
+-- Name: relation_members; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE relation_members (
--
--- Name: relation_tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: relation_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE relation_tags (
--
--- Name: relations; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: relations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE relations (
changeset_id bigint NOT NULL,
"timestamp" timestamp without time zone NOT NULL,
version bigint NOT NULL,
- visible boolean DEFAULT true NOT NULL
+ visible boolean DEFAULT true NOT NULL,
+ redaction_id integer
);
--
--- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE schema_migrations (
--
--- Name: sessions; Type: TABLE; Schema: public; Owner: -; Tablespace:
---
-
-CREATE TABLE sessions (
- id integer NOT NULL,
- session_id character varying(255),
- data text,
- created_at timestamp without time zone,
- updated_at timestamp without time zone
-);
-
-
---
--- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
---
-
-CREATE SEQUENCE sessions_id_seq
- START WITH 1
- INCREMENT BY 1
- NO MINVALUE
- NO MAXVALUE
- CACHE 1;
-
-
---
--- Name: sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
---
-
-ALTER SEQUENCE sessions_id_seq OWNED BY sessions.id;
-
-
---
--- Name: user_blocks; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: user_blocks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE user_blocks (
needs_view boolean DEFAULT false NOT NULL,
revoker_id bigint,
created_at timestamp without time zone,
- updated_at timestamp without time zone
+ updated_at timestamp without time zone,
+ reason_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
);
--
--- Name: user_preferences; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: user_preferences; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE user_preferences (
--
--- Name: user_roles; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: user_roles; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE user_roles (
--
--- Name: user_tokens; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: user_tokens; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE user_tokens (
--
--- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE users (
status user_status_enum DEFAULT 'pending'::user_status_enum NOT NULL,
terms_agreed timestamp without time zone,
consider_pd boolean DEFAULT false NOT NULL,
- openid_url character varying(255),
preferred_editor character varying(255),
terms_seen boolean DEFAULT false NOT NULL,
- image_fingerprint character varying(255)
+ auth_uid character varying(255),
+ description_format format_enum DEFAULT 'markdown'::format_enum NOT NULL,
+ image_fingerprint character varying(255),
+ changesets_count integer DEFAULT 0 NOT NULL,
+ traces_count integer DEFAULT 0 NOT NULL,
+ 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
);
--
--- Name: way_nodes; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: way_nodes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE way_nodes (
--
--- Name: way_tags; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: way_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE way_tags (
--
--- Name: ways; Type: TABLE; Schema: public; Owner: -; Tablespace:
+-- Name: ways; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE ways (
changeset_id bigint NOT NULL,
"timestamp" timestamp without time zone NOT NULL,
version bigint NOT NULL,
- visible boolean DEFAULT true NOT NULL
+ visible boolean DEFAULT true NOT NULL,
+ redaction_id integer
);
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
-ALTER TABLE ONLY changesets ALTER COLUMN id SET DEFAULT nextval('changesets_id_seq'::regclass);
+ALTER TABLE ONLY changeset_comments ALTER COLUMN id SET DEFAULT nextval('changeset_comments_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
-ALTER TABLE ONLY client_applications ALTER COLUMN id SET DEFAULT nextval('client_applications_id_seq'::regclass);
+ALTER TABLE ONLY changesets ALTER COLUMN id SET DEFAULT nextval('changesets_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
-ALTER TABLE ONLY countries ALTER COLUMN id SET DEFAULT nextval('countries_id_seq'::regclass);
+ALTER TABLE ONLY client_applications ALTER COLUMN id SET DEFAULT nextval('client_applications_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
--
-ALTER TABLE ONLY sessions ALTER COLUMN id SET DEFAULT nextval('sessions_id_seq'::regclass);
+ALTER TABLE ONLY redactions ALTER COLUMN id SET DEFAULT nextval('redactions_id_seq'::regclass);
--
--
--- Name: acls_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: acls_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY acls
--
--- Name: changesets_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: changeset_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
-ALTER TABLE ONLY changesets
- ADD CONSTRAINT changesets_pkey PRIMARY KEY (id);
+ALTER TABLE ONLY changeset_comments
+ ADD CONSTRAINT changeset_comments_pkey PRIMARY KEY (id);
--
--- Name: client_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: changesets_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
-ALTER TABLE ONLY client_applications
- ADD CONSTRAINT client_applications_pkey PRIMARY KEY (id);
+ALTER TABLE ONLY changesets
+ ADD CONSTRAINT changesets_pkey PRIMARY KEY (id);
--
--- Name: countries_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: client_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
-ALTER TABLE ONLY countries
- ADD CONSTRAINT countries_pkey PRIMARY KEY (id);
+ALTER TABLE ONLY client_applications
+ ADD CONSTRAINT client_applications_pkey PRIMARY KEY (id);
--
--- Name: current_node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: current_node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY current_node_tags
--
--- Name: current_nodes_pkey1; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: current_nodes_pkey1; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY current_nodes
--
--- Name: current_relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: current_relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY current_relation_members
--
--- Name: current_relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: current_relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY current_relation_tags
--
--- Name: current_relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: current_relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY current_relations
--
--- Name: current_way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: current_way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY current_way_nodes
--
--- Name: current_way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: current_way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY current_way_tags
--
--- Name: current_ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: current_ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY current_ways
--
--- Name: diary_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: diary_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY diary_comments
--
--- Name: diary_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: diary_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY diary_entries
--
--- Name: friends_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: friends_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY friends
--
--- Name: gpx_file_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: gpx_file_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY gpx_file_tags
--
--- Name: gpx_files_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: gpx_files_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY gpx_files
--
--- Name: languages_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: languages_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY languages
--
--- Name: messages_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: messages_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY messages
--
--- Name: node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY node_tags
--
--- Name: nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY nodes
--
--- Name: note_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: note_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY note_comments
--
--- Name: notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY notes
--
--- Name: oauth_nonces_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: oauth_nonces_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY oauth_nonces
--
--- Name: oauth_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: oauth_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY oauth_tokens
--
--- Name: relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: redactions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY redactions
+ ADD CONSTRAINT redactions_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY relation_members
--
--- Name: relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY relation_tags
--
--- Name: relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY relations
--
--- Name: sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
---
-
-ALTER TABLE ONLY sessions
- ADD CONSTRAINT sessions_pkey PRIMARY KEY (id);
-
-
---
--- Name: user_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: user_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY user_blocks
--
--- Name: user_preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: user_preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY user_preferences
--
--- Name: user_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: user_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY user_roles
--
--- Name: user_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: user_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY user_tokens
--
--- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY users
--
--- Name: way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY way_nodes
--
--- Name: way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY way_tags
--
--- Name: ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
+-- Name: ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY ways
--
--- Name: acls_k_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: acls_k_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX acls_k_idx ON acls USING btree (k);
--
--- Name: changeset_tags_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: changeset_tags_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX changeset_tags_id_idx ON changeset_tags USING btree (changeset_id);
--
--- Name: changesets_bbox_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: changesets_bbox_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX changesets_bbox_idx ON changesets USING gist (min_lat, max_lat, min_lon, max_lon);
--
--- Name: changesets_closed_at_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: changesets_closed_at_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX changesets_closed_at_idx ON changesets USING btree (closed_at);
--
--- Name: changesets_created_at_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: changesets_created_at_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX changesets_created_at_idx ON changesets USING btree (created_at);
--
--- Name: changesets_user_id_created_at_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: changesets_user_id_created_at_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX changesets_user_id_created_at_idx ON changesets USING btree (user_id, created_at);
--
--- Name: changesets_user_id_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: changesets_user_id_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX changesets_user_id_id_idx ON changesets USING btree (user_id, id);
--
--- Name: countries_code_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
---
-
-CREATE UNIQUE INDEX countries_code_idx ON countries USING btree (code);
-
-
---
--- Name: current_nodes_tile_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: current_nodes_tile_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX current_nodes_tile_idx ON current_nodes USING btree (tile);
--
--- Name: current_nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: current_nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX current_nodes_timestamp_idx ON current_nodes USING btree ("timestamp");
--
--- Name: current_relation_members_member_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: current_relation_members_member_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX current_relation_members_member_idx ON current_relation_members USING btree (member_type, member_id);
--
--- Name: current_relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: current_relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX current_relations_timestamp_idx ON current_relations USING btree ("timestamp");
--
--- Name: current_way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: current_way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX current_way_nodes_node_idx ON current_way_nodes USING btree (node_id);
--
--- Name: current_ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: current_ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX current_ways_timestamp_idx ON current_ways USING btree ("timestamp");
--
--- Name: diary_comment_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: diary_comment_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX diary_comment_user_id_created_at_index ON diary_comments USING btree (user_id, created_at);
--
--- Name: diary_comments_entry_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: diary_comments_entry_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX diary_comments_entry_id_idx ON diary_comments USING btree (diary_entry_id, id);
--
--- Name: diary_entry_created_at_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: diary_entry_created_at_index; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX diary_entry_created_at_index ON diary_entries USING btree (created_at);
--
--- Name: diary_entry_language_code_created_at_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: diary_entry_language_code_created_at_index; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX diary_entry_language_code_created_at_index ON diary_entries USING btree (language_code, created_at);
--
--- Name: diary_entry_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: diary_entry_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX diary_entry_user_id_created_at_index ON diary_entries USING btree (user_id, created_at);
--
--- Name: friends_user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: friends_user_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX friends_user_id_idx ON friends USING btree (user_id);
--
--- Name: gpx_file_tags_gpxid_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: gpx_file_tags_gpxid_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX gpx_file_tags_gpxid_idx ON gpx_file_tags USING btree (gpx_id);
--
--- Name: gpx_file_tags_tag_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: gpx_file_tags_tag_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX gpx_file_tags_tag_idx ON gpx_file_tags USING btree (tag);
--
--- Name: gpx_files_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: gpx_files_timestamp_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX gpx_files_timestamp_idx ON gpx_files USING btree ("timestamp");
--
--- Name: gpx_files_user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: gpx_files_user_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX gpx_files_user_id_idx ON gpx_files USING btree (user_id);
--
--- Name: gpx_files_visible_visibility_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: gpx_files_visible_visibility_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX gpx_files_visible_visibility_idx ON gpx_files USING btree (visible, visibility);
--
--- Name: index_client_applications_on_key; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: index_changeset_comments_on_created_at; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX index_changeset_comments_on_created_at ON changeset_comments USING btree (created_at);
+
+
+--
+-- Name: index_changesets_subscribers_on_changeset_id; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX index_changesets_subscribers_on_changeset_id ON changesets_subscribers USING btree (changeset_id);
+
+
+--
+-- Name: index_changesets_subscribers_on_subscriber_id_and_changeset_id; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE UNIQUE INDEX index_changesets_subscribers_on_subscriber_id_and_changeset_id ON changesets_subscribers USING btree (subscriber_id, changeset_id);
+
+
+--
+-- Name: index_client_applications_on_key; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_client_applications_on_key ON client_applications USING btree (key);
--
--- Name: index_oauth_nonces_on_nonce_and_timestamp; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: index_note_comments_on_body; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX index_note_comments_on_body ON note_comments USING gin (to_tsvector('english'::regconfig, body));
+
+
+--
+-- Name: index_note_comments_on_created_at; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX index_note_comments_on_created_at ON note_comments USING btree (created_at);
+
+
+--
+-- Name: index_oauth_nonces_on_nonce_and_timestamp; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_oauth_nonces_on_nonce_and_timestamp ON oauth_nonces USING btree (nonce, "timestamp");
--
--- Name: index_oauth_tokens_on_token; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: index_oauth_tokens_on_token; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX index_oauth_tokens_on_token ON oauth_tokens USING btree (token);
--
--- Name: index_user_blocks_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: index_user_blocks_on_user_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_user_blocks_on_user_id ON user_blocks USING btree (user_id);
--
--- Name: messages_from_user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: messages_from_user_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX messages_from_user_id_idx ON messages USING btree (from_user_id);
--
--- Name: messages_to_user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: messages_to_user_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX messages_to_user_id_idx ON messages USING btree (to_user_id);
--
--- Name: nodes_changeset_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: nodes_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX nodes_changeset_id_idx ON nodes USING btree (changeset_id);
--
--- Name: nodes_tile_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: nodes_tile_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX nodes_tile_idx ON nodes USING btree (tile);
--
--- Name: nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX nodes_timestamp_idx ON nodes USING btree ("timestamp");
--
--- Name: note_comments_note_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: note_comments_note_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX note_comments_note_id_idx ON note_comments USING btree (note_id);
--
--- Name: notes_created_at_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: notes_created_at_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX notes_created_at_idx ON notes USING btree (created_at);
--
--- Name: notes_tile_status_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: notes_tile_status_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX notes_tile_status_idx ON notes USING btree (tile, status);
--
--- Name: notes_updated_at_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: notes_updated_at_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX notes_updated_at_idx ON notes USING btree (updated_at);
--
--- Name: points_gpxid_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: points_gpxid_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX points_gpxid_idx ON gps_points USING btree (gpx_id);
--
--- Name: points_tile_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: points_tile_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX points_tile_idx ON gps_points USING btree (tile);
--
--- Name: relation_members_member_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: relation_members_member_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX relation_members_member_idx ON relation_members USING btree (member_type, member_id);
--
--- Name: relations_changeset_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: relations_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX relations_changeset_id_idx ON relations USING btree (changeset_id);
--
--- Name: relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX relations_timestamp_idx ON relations USING btree ("timestamp");
--
--- Name: sessions_session_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
---
-
-CREATE UNIQUE INDEX sessions_session_id_idx ON sessions USING btree (session_id);
-
-
---
--- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
--
--- Name: user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: user_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX user_id_idx ON friends USING btree (friend_user_id);
--
--- Name: user_openid_url_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: user_roles_id_role_unique; Type: INDEX; Schema: public; Owner: -
--
-CREATE UNIQUE INDEX user_openid_url_idx ON users USING btree (openid_url);
+CREATE UNIQUE INDEX user_roles_id_role_unique ON user_roles USING btree (user_id, role);
--
--- Name: user_roles_id_role_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: user_tokens_token_idx; Type: INDEX; Schema: public; Owner: -
--
-CREATE UNIQUE INDEX user_roles_id_role_unique ON user_roles USING btree (user_id, role);
+CREATE UNIQUE INDEX user_tokens_token_idx ON user_tokens USING btree (token);
--
--- Name: user_tokens_token_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: user_tokens_user_id_idx; Type: INDEX; Schema: public; Owner: -
--
-CREATE UNIQUE INDEX user_tokens_token_idx ON user_tokens USING btree (token);
+CREATE INDEX user_tokens_user_id_idx ON user_tokens USING btree (user_id);
--
--- Name: user_tokens_user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: users_auth_idx; Type: INDEX; Schema: public; Owner: -
--
-CREATE INDEX user_tokens_user_id_idx ON user_tokens USING btree (user_id);
+CREATE UNIQUE INDEX users_auth_idx ON users USING btree (auth_provider, auth_uid);
--
--- Name: users_display_name_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: users_display_name_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX users_display_name_idx ON users USING btree (display_name);
--
--- Name: users_display_name_lower_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: users_display_name_lower_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX users_display_name_lower_idx ON users USING btree (lower((display_name)::text));
--
--- Name: users_email_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: users_email_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX users_email_idx ON users USING btree (email);
--
--- Name: users_email_lower_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: users_email_lower_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX users_email_lower_idx ON users USING btree (lower((email)::text));
--
--- Name: way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX way_nodes_node_idx ON way_nodes USING btree (node_id);
--
--- Name: ways_changeset_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: ways_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX ways_changeset_id_idx ON ways USING btree (changeset_id);
--
--- Name: ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace:
+-- Name: ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX ways_timestamp_idx ON ways USING btree ("timestamp");
+--
+-- Name: changeset_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY changeset_comments
+ ADD CONSTRAINT changeset_comments_author_id_fkey FOREIGN KEY (author_id) REFERENCES users(id);
+
+
+--
+-- Name: changeset_comments_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY changeset_comments
+ ADD CONSTRAINT changeset_comments_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+
+
--
-- Name: changeset_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ADD CONSTRAINT changeset_tags_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+--
+-- Name: changesets_subscribers_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY changesets_subscribers
+ ADD CONSTRAINT changesets_subscribers_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+
+
+--
+-- Name: changesets_subscribers_subscriber_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY changesets_subscribers
+ ADD CONSTRAINT changesets_subscribers_subscriber_id_fkey FOREIGN KEY (subscriber_id) REFERENCES users(id);
+
+
--
-- Name: changesets_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ADD CONSTRAINT nodes_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+--
+-- Name: nodes_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY nodes
+ ADD CONSTRAINT nodes_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES redactions(id);
+
+
--
-- Name: note_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ADD CONSTRAINT oauth_tokens_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+--
+-- Name: redactions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY redactions
+ ADD CONSTRAINT redactions_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+
+
--
-- Name: relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ADD CONSTRAINT relations_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+--
+-- Name: relations_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY relations
+ ADD CONSTRAINT relations_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES redactions(id);
+
+
--
-- Name: user_blocks_moderator_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ADD CONSTRAINT ways_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+--
+-- Name: ways_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY ways
+ ADD CONSTRAINT ways_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES redactions(id);
+
+
--
-- PostgreSQL database dump complete
--
+SET search_path TO "$user", public;
+
INSERT INTO schema_migrations (version) VALUES ('1');
INSERT INTO schema_migrations (version) VALUES ('10');
INSERT INTO schema_migrations (version) VALUES ('20120208194454');
+INSERT INTO schema_migrations (version) VALUES ('20120214210114');
+
INSERT INTO schema_migrations (version) VALUES ('20120219161649');
+INSERT INTO schema_migrations (version) VALUES ('20120318201948');
+
+INSERT INTO schema_migrations (version) VALUES ('20120328090602');
+
+INSERT INTO schema_migrations (version) VALUES ('20120404205604');
+
+INSERT INTO schema_migrations (version) VALUES ('20120808231205');
+
+INSERT INTO schema_migrations (version) VALUES ('20121005195010');
+
+INSERT INTO schema_migrations (version) VALUES ('20121012044047');
+
+INSERT INTO schema_migrations (version) VALUES ('20121119165817');
+
+INSERT INTO schema_migrations (version) VALUES ('20121202155309');
+
+INSERT INTO schema_migrations (version) VALUES ('20121203124841');
+
+INSERT INTO schema_migrations (version) VALUES ('20130328184137');
+
+INSERT INTO schema_migrations (version) VALUES ('20131029121300');
+
+INSERT INTO schema_migrations (version) VALUES ('20131212124700');
+
+INSERT INTO schema_migrations (version) VALUES ('20140115192822');
+
+INSERT INTO schema_migrations (version) VALUES ('20140117185510');
+
+INSERT INTO schema_migrations (version) VALUES ('20140210003018');
+
+INSERT INTO schema_migrations (version) VALUES ('20140507110937');
+
+INSERT INTO schema_migrations (version) VALUES ('20140519141742');
+
+INSERT INTO schema_migrations (version) VALUES ('20150110152606');
+
+INSERT INTO schema_migrations (version) VALUES ('20150111192335');
+
+INSERT INTO schema_migrations (version) VALUES ('20150222101847');
+
+INSERT INTO schema_migrations (version) VALUES ('20150818224516');
+
INSERT INTO schema_migrations (version) VALUES ('21');
INSERT INTO schema_migrations (version) VALUES ('22');
INSERT INTO schema_migrations (version) VALUES ('8');
-INSERT INTO schema_migrations (version) VALUES ('9');
\ No newline at end of file
+INSERT INTO schema_migrations (version) VALUES ('9');
+