]> git.openstreetmap.org Git - rails.git/blobdiff - db/structure.sql
Avoid using live models in old migrations
[rails.git] / db / structure.sql
index be0603e6ea299927e23c3b2140ccdbb39fd1ee5f..8f4fe3e793c5809a754a01fb2539853d38daaf4a 100644 (file)
@@ -1,14 +1,9 @@
---
--- 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 statement_timeout = 0;
 SET lock_timeout = 0;
+SET idle_in_transaction_session_timeout = 0;
 SET client_encoding = 'UTF8';
 SET standard_conforming_strings = on;
 SET client_encoding = 'UTF8';
 SET standard_conforming_strings = on;
+SELECT pg_catalog.set_config('search_path', '', false);
 SET check_function_bodies = false;
 SET client_min_messages = warning;
 SET row_security = off;
 SET check_function_bodies = false;
 SET client_min_messages = warning;
 SET row_security = off;
@@ -41,13 +36,11 @@ CREATE EXTENSION IF NOT EXISTS btree_gist WITH SCHEMA public;
 COMMENT ON EXTENSION btree_gist IS 'support for indexing common datatypes in GiST';
 
 
 COMMENT ON EXTENSION btree_gist IS 'support for indexing common datatypes in GiST';
 
 
-SET search_path = public, pg_catalog;
-
 --
 -- Name: format_enum; Type: TYPE; Schema: public; Owner: -
 --
 
 --
 -- Name: format_enum; Type: TYPE; Schema: public; Owner: -
 --
 
-CREATE TYPE format_enum AS ENUM (
+CREATE TYPE public.format_enum AS ENUM (
     'html',
     'markdown',
     'text'
     'html',
     'markdown',
     'text'
@@ -58,7 +51,7 @@ CREATE TYPE format_enum AS ENUM (
 -- Name: gpx_visibility_enum; Type: TYPE; Schema: public; Owner: -
 --
 
 -- Name: gpx_visibility_enum; Type: TYPE; Schema: public; Owner: -
 --
 
-CREATE TYPE gpx_visibility_enum AS ENUM (
+CREATE TYPE public.gpx_visibility_enum AS ENUM (
     'private',
     'public',
     'trackable',
     'private',
     'public',
     'trackable',
@@ -66,11 +59,22 @@ CREATE TYPE gpx_visibility_enum AS ENUM (
 );
 
 
 );
 
 
+--
+-- Name: issue_status_enum; Type: TYPE; Schema: public; Owner: -
+--
+
+CREATE TYPE public.issue_status_enum AS ENUM (
+    'open',
+    'ignored',
+    'resolved'
+);
+
+
 --
 -- Name: note_event_enum; Type: TYPE; Schema: public; Owner: -
 --
 
 --
 -- Name: note_event_enum; Type: TYPE; Schema: public; Owner: -
 --
 
-CREATE TYPE note_event_enum AS ENUM (
+CREATE TYPE public.note_event_enum AS ENUM (
     'opened',
     'closed',
     'reopened',
     'opened',
     'closed',
     'reopened',
@@ -83,7 +87,7 @@ CREATE TYPE note_event_enum AS ENUM (
 -- Name: note_status_enum; Type: TYPE; Schema: public; Owner: -
 --
 
 -- Name: note_status_enum; Type: TYPE; Schema: public; Owner: -
 --
 
-CREATE TYPE note_status_enum AS ENUM (
+CREATE TYPE public.note_status_enum AS ENUM (
     'open',
     'closed',
     'hidden'
     'open',
     'closed',
     'hidden'
@@ -94,7 +98,7 @@ CREATE TYPE note_status_enum AS ENUM (
 -- Name: nwr_enum; Type: TYPE; Schema: public; Owner: -
 --
 
 -- Name: nwr_enum; Type: TYPE; Schema: public; Owner: -
 --
 
-CREATE TYPE nwr_enum AS ENUM (
+CREATE TYPE public.nwr_enum AS ENUM (
     'Node',
     'Way',
     'Relation'
     'Node',
     'Way',
     'Relation'
@@ -105,7 +109,7 @@ CREATE TYPE nwr_enum AS ENUM (
 -- Name: user_role_enum; Type: TYPE; Schema: public; Owner: -
 --
 
 -- Name: user_role_enum; Type: TYPE; Schema: public; Owner: -
 --
 
-CREATE TYPE user_role_enum AS ENUM (
+CREATE TYPE public.user_role_enum AS ENUM (
     'administrator',
     'moderator'
 );
     'administrator',
     'moderator'
 );
@@ -115,7 +119,7 @@ CREATE TYPE user_role_enum AS ENUM (
 -- Name: user_status_enum; Type: TYPE; Schema: public; Owner: -
 --
 
 -- Name: user_status_enum; Type: TYPE; Schema: public; Owner: -
 --
 
-CREATE TYPE user_status_enum AS ENUM (
+CREATE TYPE public.user_status_enum AS ENUM (
     'pending',
     'active',
     'confirmed',
     'pending',
     'active',
     'confirmed',
@@ -128,27 +132,27 @@ CREATE TYPE user_status_enum AS ENUM (
 -- Name: maptile_for_point(bigint, bigint, integer); Type: FUNCTION; Schema: public; Owner: -
 --
 
 -- Name: maptile_for_point(bigint, bigint, integer); Type: FUNCTION; Schema: public; Owner: -
 --
 
-CREATE FUNCTION maptile_for_point(bigint, bigint, integer) RETURNS integer
+CREATE FUNCTION public.maptile_for_point(bigint, bigint, integer) RETURNS integer
     LANGUAGE c STRICT
     LANGUAGE c STRICT
-    AS '$libdir/libpgosm', 'maptile_for_point';
+    AS '$libdir/libpgosm.so', 'maptile_for_point';
 
 
 --
 -- Name: tile_for_point(integer, integer); Type: FUNCTION; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: tile_for_point(integer, integer); Type: FUNCTION; Schema: public; Owner: -
 --
 
-CREATE FUNCTION tile_for_point(integer, integer) RETURNS bigint
+CREATE FUNCTION public.tile_for_point(integer, integer) RETURNS bigint
     LANGUAGE c STRICT
     LANGUAGE c STRICT
-    AS '$libdir/libpgosm', 'tile_for_point';
+    AS '$libdir/libpgosm.so', 'tile_for_point';
 
 
 --
 -- Name: xid_to_int4(xid); Type: FUNCTION; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: xid_to_int4(xid); Type: FUNCTION; Schema: public; Owner: -
 --
 
-CREATE FUNCTION xid_to_int4(xid) RETURNS integer
+CREATE FUNCTION public.xid_to_int4(xid) RETURNS integer
     LANGUAGE c IMMUTABLE STRICT
     LANGUAGE c IMMUTABLE STRICT
-    AS '$libdir/libpgosm', 'xid_to_int4';
+    AS '$libdir/libpgosm.so', 'xid_to_int4';
 
 
 SET default_tablespace = '';
 
 
 SET default_tablespace = '';
@@ -159,12 +163,13 @@ SET default_with_oids = false;
 -- Name: acls; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: acls; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE acls (
-    id integer NOT NULL,
+CREATE TABLE public.acls (
+    id bigint NOT NULL,
     address inet,
     address inet,
-    k character varying(255) NOT NULL,
-    v character varying(255),
-    domain character varying(255)
+    k character varying NOT NULL,
+    v character varying,
+    domain character varying,
+    mx character varying
 );
 
 
 );
 
 
@@ -172,7 +177,7 @@ CREATE TABLE acls (
 -- Name: acls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: acls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE acls_id_seq
+CREATE SEQUENCE public.acls_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -184,14 +189,82 @@ CREATE SEQUENCE acls_id_seq
 -- Name: acls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: acls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE acls_id_seq OWNED BY acls.id;
+ALTER SEQUENCE public.acls_id_seq OWNED BY public.acls.id;
+
+
+--
+-- Name: active_storage_attachments; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.active_storage_attachments (
+    id bigint NOT NULL,
+    name character varying NOT NULL,
+    record_type character varying NOT NULL,
+    record_id bigint NOT NULL,
+    blob_id bigint NOT NULL,
+    created_at timestamp without time zone NOT NULL
+);
+
+
+--
+-- Name: active_storage_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
+--
+
+CREATE SEQUENCE public.active_storage_attachments_id_seq
+    START WITH 1
+    INCREMENT BY 1
+    NO MINVALUE
+    NO MAXVALUE
+    CACHE 1;
+
+
+--
+-- Name: active_storage_attachments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
+--
+
+ALTER SEQUENCE public.active_storage_attachments_id_seq OWNED BY public.active_storage_attachments.id;
+
+
+--
+-- Name: active_storage_blobs; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.active_storage_blobs (
+    id bigint NOT NULL,
+    key character varying NOT NULL,
+    filename character varying NOT NULL,
+    content_type character varying,
+    metadata text,
+    byte_size bigint NOT NULL,
+    checksum character varying NOT NULL,
+    created_at timestamp without time zone NOT NULL
+);
+
+
+--
+-- Name: active_storage_blobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
+--
+
+CREATE SEQUENCE public.active_storage_blobs_id_seq
+    START WITH 1
+    INCREMENT BY 1
+    NO MINVALUE
+    NO MAXVALUE
+    CACHE 1;
+
+
+--
+-- Name: active_storage_blobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
+--
+
+ALTER SEQUENCE public.active_storage_blobs_id_seq OWNED BY public.active_storage_blobs.id;
 
 
 --
 -- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE ar_internal_metadata (
+CREATE TABLE public.ar_internal_metadata (
     key character varying NOT NULL,
     value character varying,
     created_at timestamp without time zone NOT NULL,
     key character varying NOT NULL,
     value character varying,
     created_at timestamp without time zone NOT NULL,
@@ -203,7 +276,7 @@ CREATE TABLE ar_internal_metadata (
 -- Name: changeset_comments; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: changeset_comments; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE changeset_comments (
+CREATE TABLE public.changeset_comments (
     id integer NOT NULL,
     changeset_id bigint NOT NULL,
     author_id bigint NOT NULL,
     id integer NOT NULL,
     changeset_id bigint NOT NULL,
     author_id bigint NOT NULL,
@@ -217,7 +290,7 @@ CREATE TABLE changeset_comments (
 -- Name: changeset_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: changeset_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE changeset_comments_id_seq
+CREATE SEQUENCE public.changeset_comments_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -229,17 +302,17 @@ CREATE SEQUENCE changeset_comments_id_seq
 -- Name: changeset_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: changeset_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE changeset_comments_id_seq OWNED BY changeset_comments.id;
+ALTER SEQUENCE public.changeset_comments_id_seq OWNED BY public.changeset_comments.id;
 
 
 --
 -- Name: changeset_tags; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: changeset_tags; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE changeset_tags (
+CREATE TABLE public.changeset_tags (
     changeset_id bigint NOT NULL,
     changeset_id bigint NOT NULL,
-    k character varying(255) DEFAULT ''::character varying NOT NULL,
-    v character varying(255) DEFAULT ''::character varying NOT NULL
+    k character varying DEFAULT ''::character varying NOT NULL,
+    v character varying DEFAULT ''::character varying NOT NULL
 );
 
 
 );
 
 
@@ -247,7 +320,7 @@ CREATE TABLE changeset_tags (
 -- Name: changesets; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: changesets; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE changesets (
+CREATE TABLE public.changesets (
     id bigint NOT NULL,
     user_id bigint NOT NULL,
     created_at timestamp without time zone NOT NULL,
     id bigint NOT NULL,
     user_id bigint NOT NULL,
     created_at timestamp without time zone NOT NULL,
@@ -264,7 +337,7 @@ CREATE TABLE changesets (
 -- Name: changesets_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: changesets_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE changesets_id_seq
+CREATE SEQUENCE public.changesets_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -276,14 +349,14 @@ CREATE SEQUENCE changesets_id_seq
 -- Name: changesets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: changesets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE changesets_id_seq OWNED BY changesets.id;
+ALTER SEQUENCE public.changesets_id_seq OWNED BY public.changesets.id;
 
 
 --
 -- Name: changesets_subscribers; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: changesets_subscribers; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE changesets_subscribers (
+CREATE TABLE public.changesets_subscribers (
     subscriber_id bigint NOT NULL,
     changeset_id bigint NOT NULL
 );
     subscriber_id bigint NOT NULL,
     changeset_id bigint NOT NULL
 );
@@ -293,12 +366,12 @@ CREATE TABLE changesets_subscribers (
 -- Name: client_applications; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: client_applications; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE client_applications (
+CREATE TABLE public.client_applications (
     id integer NOT NULL,
     id integer NOT NULL,
-    name character varying(255),
-    url character varying(255),
-    support_url character varying(255),
-    callback_url character varying(255),
+    name character varying,
+    url character varying,
+    support_url character varying,
+    callback_url character varying,
     key character varying(50),
     secret character varying(50),
     user_id integer,
     key character varying(50),
     secret character varying(50),
     user_id integer,
@@ -318,7 +391,7 @@ CREATE TABLE client_applications (
 -- Name: client_applications_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: client_applications_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE client_applications_id_seq
+CREATE SEQUENCE public.client_applications_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -330,17 +403,17 @@ CREATE SEQUENCE client_applications_id_seq
 -- Name: client_applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: client_applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE client_applications_id_seq OWNED BY client_applications.id;
+ALTER SEQUENCE public.client_applications_id_seq OWNED BY public.client_applications.id;
 
 
 --
 -- Name: current_node_tags; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: current_node_tags; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE current_node_tags (
+CREATE TABLE public.current_node_tags (
     node_id bigint NOT NULL,
     node_id bigint NOT NULL,
-    k character varying(255) DEFAULT ''::character varying NOT NULL,
-    v character varying(255) DEFAULT ''::character varying NOT NULL
+    k character varying DEFAULT ''::character varying NOT NULL,
+    v character varying DEFAULT ''::character varying NOT NULL
 );
 
 
 );
 
 
@@ -348,7 +421,7 @@ CREATE TABLE current_node_tags (
 -- Name: current_nodes; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: current_nodes; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE current_nodes (
+CREATE TABLE public.current_nodes (
     id bigint NOT NULL,
     latitude integer NOT NULL,
     longitude integer NOT NULL,
     id bigint NOT NULL,
     latitude integer NOT NULL,
     longitude integer NOT NULL,
@@ -364,7 +437,7 @@ CREATE TABLE current_nodes (
 -- Name: current_nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: current_nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE current_nodes_id_seq
+CREATE SEQUENCE public.current_nodes_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -376,18 +449,18 @@ CREATE SEQUENCE current_nodes_id_seq
 -- Name: current_nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: current_nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE current_nodes_id_seq OWNED BY current_nodes.id;
+ALTER SEQUENCE public.current_nodes_id_seq OWNED BY public.current_nodes.id;
 
 
 --
 -- Name: current_relation_members; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: current_relation_members; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE current_relation_members (
+CREATE TABLE public.current_relation_members (
     relation_id bigint NOT NULL,
     relation_id bigint NOT NULL,
-    member_type nwr_enum NOT NULL,
+    member_type public.nwr_enum NOT NULL,
     member_id bigint NOT NULL,
     member_id bigint NOT NULL,
-    member_role character varying(255) NOT NULL,
+    member_role character varying NOT NULL,
     sequence_id integer DEFAULT 0 NOT NULL
 );
 
     sequence_id integer DEFAULT 0 NOT NULL
 );
 
@@ -396,10 +469,10 @@ CREATE TABLE current_relation_members (
 -- Name: current_relation_tags; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: current_relation_tags; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE current_relation_tags (
+CREATE TABLE public.current_relation_tags (
     relation_id bigint NOT NULL,
     relation_id bigint NOT NULL,
-    k character varying(255) DEFAULT ''::character varying NOT NULL,
-    v character varying(255) DEFAULT ''::character varying NOT NULL
+    k character varying DEFAULT ''::character varying NOT NULL,
+    v character varying DEFAULT ''::character varying NOT NULL
 );
 
 
 );
 
 
@@ -407,7 +480,7 @@ CREATE TABLE current_relation_tags (
 -- Name: current_relations; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: current_relations; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE current_relations (
+CREATE TABLE public.current_relations (
     id bigint NOT NULL,
     changeset_id bigint NOT NULL,
     "timestamp" timestamp without time zone NOT NULL,
     id bigint NOT NULL,
     changeset_id bigint NOT NULL,
     "timestamp" timestamp without time zone NOT NULL,
@@ -420,7 +493,7 @@ CREATE TABLE current_relations (
 -- Name: current_relations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: current_relations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE current_relations_id_seq
+CREATE SEQUENCE public.current_relations_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -432,14 +505,14 @@ CREATE SEQUENCE current_relations_id_seq
 -- Name: current_relations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: current_relations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE current_relations_id_seq OWNED BY current_relations.id;
+ALTER SEQUENCE public.current_relations_id_seq OWNED BY public.current_relations.id;
 
 
 --
 -- Name: current_way_nodes; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: current_way_nodes; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE current_way_nodes (
+CREATE TABLE public.current_way_nodes (
     way_id bigint NOT NULL,
     node_id bigint NOT NULL,
     sequence_id bigint NOT NULL
     way_id bigint NOT NULL,
     node_id bigint NOT NULL,
     sequence_id bigint NOT NULL
@@ -450,10 +523,10 @@ CREATE TABLE current_way_nodes (
 -- Name: current_way_tags; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: current_way_tags; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE current_way_tags (
+CREATE TABLE public.current_way_tags (
     way_id bigint NOT NULL,
     way_id bigint NOT NULL,
-    k character varying(255) DEFAULT ''::character varying NOT NULL,
-    v character varying(255) DEFAULT ''::character varying NOT NULL
+    k character varying DEFAULT ''::character varying NOT NULL,
+    v character varying DEFAULT ''::character varying NOT NULL
 );
 
 
 );
 
 
@@ -461,7 +534,7 @@ CREATE TABLE current_way_tags (
 -- Name: current_ways; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: current_ways; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE current_ways (
+CREATE TABLE public.current_ways (
     id bigint NOT NULL,
     changeset_id bigint NOT NULL,
     "timestamp" timestamp without time zone NOT NULL,
     id bigint NOT NULL,
     changeset_id bigint NOT NULL,
     "timestamp" timestamp without time zone NOT NULL,
@@ -474,7 +547,7 @@ CREATE TABLE current_ways (
 -- Name: current_ways_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: current_ways_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE current_ways_id_seq
+CREATE SEQUENCE public.current_ways_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -486,14 +559,53 @@ CREATE SEQUENCE current_ways_id_seq
 -- Name: current_ways_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: current_ways_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE current_ways_id_seq OWNED BY current_ways.id;
+ALTER SEQUENCE public.current_ways_id_seq OWNED BY public.current_ways.id;
+
+
+--
+-- Name: delayed_jobs; Type: TABLE; Schema: public; Owner: -
+--
+
+CREATE TABLE public.delayed_jobs (
+    id bigint NOT NULL,
+    priority integer DEFAULT 0 NOT NULL,
+    attempts integer DEFAULT 0 NOT NULL,
+    handler text NOT NULL,
+    last_error text,
+    run_at timestamp without time zone,
+    locked_at timestamp without time zone,
+    failed_at timestamp without time zone,
+    locked_by character varying,
+    queue character varying,
+    created_at timestamp without time zone,
+    updated_at timestamp without time zone
+);
+
+
+--
+-- Name: delayed_jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
+--
+
+CREATE SEQUENCE public.delayed_jobs_id_seq
+    START WITH 1
+    INCREMENT BY 1
+    NO MINVALUE
+    NO MAXVALUE
+    CACHE 1;
+
+
+--
+-- Name: delayed_jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
+--
+
+ALTER SEQUENCE public.delayed_jobs_id_seq OWNED BY public.delayed_jobs.id;
 
 
 --
 -- Name: diary_comments; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: diary_comments; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE diary_comments (
+CREATE TABLE public.diary_comments (
     id bigint NOT NULL,
     diary_entry_id bigint NOT NULL,
     user_id bigint NOT NULL,
     id bigint NOT NULL,
     diary_entry_id bigint NOT NULL,
     user_id bigint NOT NULL,
@@ -501,7 +613,7 @@ CREATE TABLE diary_comments (
     created_at timestamp without time zone NOT NULL,
     updated_at timestamp without time zone NOT NULL,
     visible boolean DEFAULT true NOT NULL,
     created_at timestamp without time zone NOT NULL,
     updated_at timestamp without time zone NOT NULL,
     visible boolean DEFAULT true NOT NULL,
-    body_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
+    body_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
 );
 
 
 );
 
 
@@ -509,7 +621,7 @@ CREATE TABLE diary_comments (
 -- Name: diary_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: diary_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE diary_comments_id_seq
+CREATE SEQUENCE public.diary_comments_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -521,25 +633,25 @@ CREATE SEQUENCE diary_comments_id_seq
 -- Name: diary_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: diary_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE diary_comments_id_seq OWNED BY diary_comments.id;
+ALTER SEQUENCE public.diary_comments_id_seq OWNED BY public.diary_comments.id;
 
 
 --
 -- Name: diary_entries; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: diary_entries; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE diary_entries (
+CREATE TABLE public.diary_entries (
     id bigint NOT NULL,
     user_id bigint NOT NULL,
     id bigint NOT NULL,
     user_id bigint NOT NULL,
-    title character varying(255) NOT NULL,
+    title character varying NOT NULL,
     body text NOT NULL,
     created_at timestamp without time zone NOT NULL,
     updated_at timestamp without time zone NOT NULL,
     latitude double precision,
     longitude double precision,
     body text NOT NULL,
     created_at timestamp without time zone NOT NULL,
     updated_at timestamp without time zone NOT NULL,
     latitude double precision,
     longitude double precision,
-    language_code character varying(255) DEFAULT 'en'::character varying NOT NULL,
+    language_code character varying 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
+    body_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
 );
 
 
 );
 
 
@@ -547,7 +659,7 @@ CREATE TABLE diary_entries (
 -- Name: diary_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: diary_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE diary_entries_id_seq
+CREATE SEQUENCE public.diary_entries_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -559,14 +671,14 @@ CREATE SEQUENCE diary_entries_id_seq
 -- Name: diary_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: diary_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE diary_entries_id_seq OWNED BY diary_entries.id;
+ALTER SEQUENCE public.diary_entries_id_seq OWNED BY public.diary_entries.id;
 
 
 --
 -- Name: diary_entry_subscriptions; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: diary_entry_subscriptions; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE diary_entry_subscriptions (
+CREATE TABLE public.diary_entry_subscriptions (
     user_id bigint NOT NULL,
     diary_entry_id bigint NOT NULL
 );
     user_id bigint NOT NULL,
     diary_entry_id bigint NOT NULL
 );
@@ -576,7 +688,7 @@ CREATE TABLE diary_entry_subscriptions (
 -- Name: friends; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: friends; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE friends (
+CREATE TABLE public.friends (
     id bigint NOT NULL,
     user_id bigint NOT NULL,
     friend_user_id bigint NOT NULL
     id bigint NOT NULL,
     user_id bigint NOT NULL,
     friend_user_id bigint NOT NULL
@@ -587,7 +699,7 @@ CREATE TABLE friends (
 -- Name: friends_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: friends_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE friends_id_seq
+CREATE SEQUENCE public.friends_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -599,14 +711,14 @@ CREATE SEQUENCE friends_id_seq
 -- Name: friends_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: friends_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE friends_id_seq OWNED BY friends.id;
+ALTER SEQUENCE public.friends_id_seq OWNED BY public.friends.id;
 
 
 --
 -- Name: gps_points; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: gps_points; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE gps_points (
+CREATE TABLE public.gps_points (
     altitude double precision,
     trackid integer NOT NULL,
     latitude integer NOT NULL,
     altitude double precision,
     trackid integer NOT NULL,
     latitude integer NOT NULL,
@@ -621,9 +733,9 @@ CREATE TABLE gps_points (
 -- Name: gpx_file_tags; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: gpx_file_tags; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE gpx_file_tags (
+CREATE TABLE public.gpx_file_tags (
     gpx_id bigint DEFAULT 0 NOT NULL,
     gpx_id bigint DEFAULT 0 NOT NULL,
-    tag character varying(255) NOT NULL,
+    tag character varying NOT NULL,
     id bigint NOT NULL
 );
 
     id bigint NOT NULL
 );
 
@@ -632,7 +744,7 @@ CREATE TABLE gpx_file_tags (
 -- Name: gpx_file_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: gpx_file_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE gpx_file_tags_id_seq
+CREATE SEQUENCE public.gpx_file_tags_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -644,25 +756,25 @@ CREATE SEQUENCE gpx_file_tags_id_seq
 -- Name: gpx_file_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: gpx_file_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE gpx_file_tags_id_seq OWNED BY gpx_file_tags.id;
+ALTER SEQUENCE public.gpx_file_tags_id_seq OWNED BY public.gpx_file_tags.id;
 
 
 --
 -- Name: gpx_files; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: gpx_files; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE gpx_files (
+CREATE TABLE public.gpx_files (
     id bigint NOT NULL,
     user_id bigint NOT NULL,
     visible boolean DEFAULT true NOT NULL,
     id bigint NOT NULL,
     user_id bigint NOT NULL,
     visible boolean DEFAULT true NOT NULL,
-    name character varying(255) DEFAULT ''::character varying NOT NULL,
+    name character varying DEFAULT ''::character varying NOT NULL,
     size bigint,
     latitude double precision,
     longitude double precision,
     "timestamp" timestamp without time zone NOT NULL,
     size bigint,
     latitude double precision,
     longitude double precision,
     "timestamp" timestamp without time zone NOT NULL,
-    description character varying(255) DEFAULT ''::character varying NOT NULL,
+    description character varying DEFAULT ''::character varying NOT NULL,
     inserted boolean NOT NULL,
     inserted boolean NOT NULL,
-    visibility gpx_visibility_enum DEFAULT 'public'::gpx_visibility_enum NOT NULL
+    visibility public.gpx_visibility_enum DEFAULT 'public'::public.gpx_visibility_enum NOT NULL
 );
 
 
 );
 
 
@@ -670,7 +782,7 @@ CREATE TABLE gpx_files (
 -- Name: gpx_files_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: gpx_files_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE gpx_files_id_seq
+CREATE SEQUENCE public.gpx_files_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -682,20 +794,19 @@ CREATE SEQUENCE gpx_files_id_seq
 -- Name: gpx_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: gpx_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE gpx_files_id_seq OWNED BY gpx_files.id;
+ALTER SEQUENCE public.gpx_files_id_seq OWNED BY public.gpx_files.id;
 
 
 --
 -- Name: issue_comments; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: issue_comments; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE issue_comments (
+CREATE TABLE public.issue_comments (
     id integer NOT NULL,
     id integer NOT NULL,
-    issue_id integer,
-    commenter_user_id integer,
-    body text,
+    issue_id integer NOT NULL,
+    user_id integer NOT NULL,
+    body text NOT NULL,
     created_at timestamp without time zone NOT NULL,
     created_at timestamp without time zone NOT NULL,
-    reassign boolean,
     updated_at timestamp without time zone NOT NULL
 );
 
     updated_at timestamp without time zone NOT NULL
 );
 
@@ -704,7 +815,7 @@ CREATE TABLE issue_comments (
 -- Name: issue_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: issue_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE issue_comments_id_seq
+CREATE SEQUENCE public.issue_comments_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -716,26 +827,26 @@ CREATE SEQUENCE issue_comments_id_seq
 -- Name: issue_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: issue_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE issue_comments_id_seq OWNED BY issue_comments.id;
+ALTER SEQUENCE public.issue_comments_id_seq OWNED BY public.issue_comments.id;
 
 
 --
 -- Name: issues; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: issues; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE issues (
+CREATE TABLE public.issues (
     id integer NOT NULL,
     reportable_type character varying NOT NULL,
     reportable_id integer NOT NULL,
     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 public.issue_status_enum DEFAULT 'open'::public.issue_status_enum NOT NULL,
+    assigned_role public.user_role_enum NOT NULL,
     resolved_at timestamp without time zone,
     resolved_by integer,
     resolved_at timestamp without time zone,
     resolved_by integer,
-    created_at timestamp without time zone NOT NULL,
-    updated_at timestamp without time zone NOT NULL,
     updated_by integer,
     updated_by integer,
-    report_count integer DEFAULT 0
+    reports_count integer DEFAULT 0,
+    created_at timestamp without time zone NOT NULL,
+    updated_at timestamp without time zone NOT NULL
 );
 
 
 );
 
 
@@ -743,7 +854,7 @@ CREATE TABLE issues (
 -- Name: issues_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: issues_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE issues_id_seq
+CREATE SEQUENCE public.issues_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -755,17 +866,17 @@ CREATE SEQUENCE issues_id_seq
 -- Name: issues_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: issues_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE issues_id_seq OWNED BY issues.id;
+ALTER SEQUENCE public.issues_id_seq OWNED BY public.issues.id;
 
 
 --
 -- Name: languages; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: languages; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE languages (
-    code character varying(255) NOT NULL,
-    english_name character varying(255) NOT NULL,
-    native_name character varying(255)
+CREATE TABLE public.languages (
+    code character varying NOT NULL,
+    english_name character varying NOT NULL,
+    native_name character varying
 );
 
 
 );
 
 
@@ -773,17 +884,17 @@ CREATE TABLE languages (
 -- Name: messages; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: messages; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE messages (
+CREATE TABLE public.messages (
     id bigint NOT NULL,
     from_user_id bigint NOT NULL,
     id bigint NOT NULL,
     from_user_id bigint NOT NULL,
-    title character varying(255) NOT NULL,
+    title character varying NOT NULL,
     body text NOT NULL,
     sent_on timestamp without time zone NOT NULL,
     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,
     body text NOT NULL,
     sent_on timestamp without time zone NOT NULL,
     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,
-    body_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
+    body_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
 );
 
 
 );
 
 
@@ -791,7 +902,7 @@ CREATE TABLE messages (
 -- Name: messages_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: messages_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE messages_id_seq
+CREATE SEQUENCE public.messages_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -803,18 +914,18 @@ CREATE SEQUENCE messages_id_seq
 -- Name: messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE messages_id_seq OWNED BY messages.id;
+ALTER SEQUENCE public.messages_id_seq OWNED BY public.messages.id;
 
 
 --
 -- Name: node_tags; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: node_tags; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE node_tags (
+CREATE TABLE public.node_tags (
     node_id bigint NOT NULL,
     version bigint NOT NULL,
     node_id bigint NOT NULL,
     version bigint NOT NULL,
-    k character varying(255) DEFAULT ''::character varying NOT NULL,
-    v character varying(255) DEFAULT ''::character varying NOT NULL
+    k character varying DEFAULT ''::character varying NOT NULL,
+    v character varying DEFAULT ''::character varying NOT NULL
 );
 
 
 );
 
 
@@ -822,7 +933,7 @@ CREATE TABLE node_tags (
 -- Name: nodes; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: nodes; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE nodes (
+CREATE TABLE public.nodes (
     node_id bigint NOT NULL,
     latitude integer NOT NULL,
     longitude integer NOT NULL,
     node_id bigint NOT NULL,
     latitude integer NOT NULL,
     longitude integer NOT NULL,
@@ -839,15 +950,15 @@ CREATE TABLE nodes (
 -- Name: note_comments; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: note_comments; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE note_comments (
-    id integer NOT NULL,
+CREATE TABLE public.note_comments (
+    id bigint NOT NULL,
     note_id bigint NOT NULL,
     visible boolean NOT NULL,
     created_at timestamp without time zone NOT NULL,
     author_ip inet,
     author_id bigint,
     body text,
     note_id bigint NOT NULL,
     visible boolean NOT NULL,
     created_at timestamp without time zone NOT NULL,
     author_ip inet,
     author_id bigint,
     body text,
-    event note_event_enum
+    event public.note_event_enum
 );
 
 
 );
 
 
@@ -855,7 +966,7 @@ CREATE TABLE note_comments (
 -- Name: note_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: note_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE note_comments_id_seq
+CREATE SEQUENCE public.note_comments_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -867,21 +978,21 @@ CREATE SEQUENCE note_comments_id_seq
 -- Name: note_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: note_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE note_comments_id_seq OWNED BY note_comments.id;
+ALTER SEQUENCE public.note_comments_id_seq OWNED BY public.note_comments.id;
 
 
 --
 -- Name: notes; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: notes; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE notes (
-    id integer NOT NULL,
+CREATE TABLE public.notes (
+    id bigint NOT NULL,
     latitude integer NOT NULL,
     longitude integer NOT NULL,
     tile bigint NOT NULL,
     updated_at timestamp without time zone NOT NULL,
     created_at timestamp without time zone NOT NULL,
     latitude integer NOT NULL,
     longitude integer NOT NULL,
     tile bigint NOT NULL,
     updated_at timestamp without time zone NOT NULL,
     created_at timestamp without time zone NOT NULL,
-    status note_status_enum NOT NULL,
+    status public.note_status_enum NOT NULL,
     closed_at timestamp without time zone
 );
 
     closed_at timestamp without time zone
 );
 
@@ -890,7 +1001,7 @@ CREATE TABLE notes (
 -- Name: notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE notes_id_seq
+CREATE SEQUENCE public.notes_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -902,16 +1013,16 @@ CREATE SEQUENCE notes_id_seq
 -- Name: notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE notes_id_seq OWNED BY notes.id;
+ALTER SEQUENCE public.notes_id_seq OWNED BY public.notes.id;
 
 
 --
 -- Name: oauth_nonces; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: oauth_nonces; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE oauth_nonces (
+CREATE TABLE public.oauth_nonces (
     id integer NOT NULL,
     id integer NOT NULL,
-    nonce character varying(255),
+    nonce character varying,
     "timestamp" integer,
     created_at timestamp without time zone,
     updated_at timestamp without time zone
     "timestamp" integer,
     created_at timestamp without time zone,
     updated_at timestamp without time zone
@@ -922,7 +1033,7 @@ CREATE TABLE oauth_nonces (
 -- Name: oauth_nonces_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: oauth_nonces_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE oauth_nonces_id_seq
+CREATE SEQUENCE public.oauth_nonces_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -934,14 +1045,14 @@ CREATE SEQUENCE oauth_nonces_id_seq
 -- Name: oauth_nonces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: oauth_nonces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE oauth_nonces_id_seq OWNED BY oauth_nonces.id;
+ALTER SEQUENCE public.oauth_nonces_id_seq OWNED BY public.oauth_nonces.id;
 
 
 --
 -- Name: oauth_tokens; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: oauth_tokens; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE oauth_tokens (
+CREATE TABLE public.oauth_tokens (
     id integer NOT NULL,
     user_id integer,
     type character varying(20),
     id integer NOT NULL,
     user_id integer,
     type character varying(20),
@@ -958,9 +1069,9 @@ CREATE TABLE oauth_tokens (
     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_api boolean DEFAULT false NOT NULL,
     allow_read_gpx boolean DEFAULT false NOT NULL,
     allow_write_gpx boolean DEFAULT false NOT NULL,
-    callback_url character varying(255),
+    callback_url character varying,
     verifier character varying(20),
     verifier character varying(20),
-    scope character varying(255),
+    scope character varying,
     valid_to timestamp without time zone,
     allow_write_notes boolean DEFAULT false NOT NULL
 );
     valid_to timestamp without time zone,
     allow_write_notes boolean DEFAULT false NOT NULL
 );
@@ -970,7 +1081,7 @@ CREATE TABLE oauth_tokens (
 -- Name: oauth_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: oauth_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE oauth_tokens_id_seq
+CREATE SEQUENCE public.oauth_tokens_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -982,21 +1093,21 @@ CREATE SEQUENCE oauth_tokens_id_seq
 -- Name: oauth_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: oauth_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE oauth_tokens_id_seq OWNED BY oauth_tokens.id;
+ALTER SEQUENCE public.oauth_tokens_id_seq OWNED BY public.oauth_tokens.id;
 
 
 --
 -- Name: redactions; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: redactions; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE redactions (
+CREATE TABLE public.redactions (
     id integer NOT NULL,
     id integer NOT NULL,
-    title character varying(255),
+    title character varying,
     description text,
     description text,
-    created_at timestamp without time zone NOT NULL,
-    updated_at timestamp without time zone NOT NULL,
+    created_at timestamp without time zone,
+    updated_at timestamp without time zone,
     user_id bigint NOT NULL,
     user_id bigint NOT NULL,
-    description_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
+    description_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
 );
 
 
 );
 
 
@@ -1004,7 +1115,7 @@ CREATE TABLE redactions (
 -- Name: redactions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: redactions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE redactions_id_seq
+CREATE SEQUENCE public.redactions_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -1016,18 +1127,18 @@ CREATE SEQUENCE redactions_id_seq
 -- Name: redactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: redactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE redactions_id_seq OWNED BY redactions.id;
+ALTER SEQUENCE public.redactions_id_seq OWNED BY public.redactions.id;
 
 
 --
 -- Name: relation_members; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: relation_members; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE relation_members (
+CREATE TABLE public.relation_members (
     relation_id bigint DEFAULT 0 NOT NULL,
     relation_id bigint DEFAULT 0 NOT NULL,
-    member_type nwr_enum NOT NULL,
+    member_type public.nwr_enum NOT NULL,
     member_id bigint NOT NULL,
     member_id bigint NOT NULL,
-    member_role character varying(255) NOT NULL,
+    member_role character varying NOT NULL,
     version bigint DEFAULT 0 NOT NULL,
     sequence_id integer DEFAULT 0 NOT NULL
 );
     version bigint DEFAULT 0 NOT NULL,
     sequence_id integer DEFAULT 0 NOT NULL
 );
@@ -1037,10 +1148,10 @@ CREATE TABLE relation_members (
 -- Name: relation_tags; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: relation_tags; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE relation_tags (
+CREATE TABLE public.relation_tags (
     relation_id bigint DEFAULT 0 NOT NULL,
     relation_id bigint DEFAULT 0 NOT NULL,
-    k character varying(255) DEFAULT ''::character varying NOT NULL,
-    v character varying(255) DEFAULT ''::character varying NOT NULL,
+    k character varying DEFAULT ''::character varying NOT NULL,
+    v character varying DEFAULT ''::character varying NOT NULL,
     version bigint NOT NULL
 );
 
     version bigint NOT NULL
 );
 
@@ -1049,7 +1160,7 @@ CREATE TABLE relation_tags (
 -- Name: relations; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: relations; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE relations (
+CREATE TABLE public.relations (
     relation_id bigint DEFAULT 0 NOT NULL,
     changeset_id bigint NOT NULL,
     "timestamp" timestamp without time zone NOT NULL,
     relation_id bigint DEFAULT 0 NOT NULL,
     changeset_id bigint NOT NULL,
     "timestamp" timestamp without time zone NOT NULL,
@@ -1063,11 +1174,12 @@ CREATE TABLE relations (
 -- Name: reports; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: reports; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE reports (
+CREATE TABLE public.reports (
     id integer NOT NULL,
     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
 );
     created_at timestamp without time zone NOT NULL,
     updated_at timestamp without time zone NOT NULL
 );
@@ -1077,7 +1189,7 @@ CREATE TABLE reports (
 -- Name: reports_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: reports_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE reports_id_seq
+CREATE SEQUENCE public.reports_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -1089,15 +1201,15 @@ CREATE SEQUENCE reports_id_seq
 -- Name: reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE reports_id_seq OWNED BY reports.id;
+ALTER SEQUENCE public.reports_id_seq OWNED BY public.reports.id;
 
 
 --
 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE schema_migrations (
-    version character varying(255) NOT NULL
+CREATE TABLE public.schema_migrations (
+    version character varying NOT NULL
 );
 
 
 );
 
 
@@ -1105,7 +1217,7 @@ CREATE TABLE schema_migrations (
 -- Name: user_blocks; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: user_blocks; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE user_blocks (
+CREATE TABLE public.user_blocks (
     id integer NOT NULL,
     user_id bigint NOT NULL,
     creator_id bigint NOT NULL,
     id integer NOT NULL,
     user_id bigint NOT NULL,
     creator_id bigint NOT NULL,
@@ -1115,7 +1227,7 @@ CREATE TABLE user_blocks (
     revoker_id bigint,
     created_at timestamp without time zone,
     updated_at timestamp without time zone,
     revoker_id bigint,
     created_at timestamp without time zone,
     updated_at timestamp without time zone,
-    reason_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
+    reason_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
 );
 
 
 );
 
 
@@ -1123,7 +1235,7 @@ CREATE TABLE user_blocks (
 -- Name: user_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: user_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE user_blocks_id_seq
+CREATE SEQUENCE public.user_blocks_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -1135,17 +1247,17 @@ CREATE SEQUENCE user_blocks_id_seq
 -- Name: user_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: user_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE user_blocks_id_seq OWNED BY user_blocks.id;
+ALTER SEQUENCE public.user_blocks_id_seq OWNED BY public.user_blocks.id;
 
 
 --
 -- Name: user_preferences; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: user_preferences; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE user_preferences (
+CREATE TABLE public.user_preferences (
     user_id bigint NOT NULL,
     user_id bigint NOT NULL,
-    k character varying(255) NOT NULL,
-    v character varying(255) NOT NULL
+    k character varying NOT NULL,
+    v character varying NOT NULL
 );
 
 
 );
 
 
@@ -1153,12 +1265,12 @@ CREATE TABLE user_preferences (
 -- Name: user_roles; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: user_roles; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE user_roles (
+CREATE TABLE public.user_roles (
     id integer NOT NULL,
     user_id bigint NOT NULL,
     id integer NOT NULL,
     user_id bigint NOT NULL,
+    role public.user_role_enum NOT NULL,
     created_at timestamp without time zone,
     updated_at timestamp without time zone,
     created_at timestamp without time zone,
     updated_at timestamp without time zone,
-    role user_role_enum NOT NULL,
     granter_id bigint NOT NULL
 );
 
     granter_id bigint NOT NULL
 );
 
@@ -1167,7 +1279,7 @@ CREATE TABLE user_roles (
 -- Name: user_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: user_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE user_roles_id_seq
+CREATE SEQUENCE public.user_roles_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -1179,17 +1291,17 @@ CREATE SEQUENCE user_roles_id_seq
 -- Name: user_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: user_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE user_roles_id_seq OWNED BY user_roles.id;
+ALTER SEQUENCE public.user_roles_id_seq OWNED BY public.user_roles.id;
 
 
 --
 -- Name: user_tokens; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: user_tokens; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE user_tokens (
+CREATE TABLE public.user_tokens (
     id bigint NOT NULL,
     user_id bigint NOT NULL,
     id bigint NOT NULL,
     user_id bigint NOT NULL,
-    token character varying(255) NOT NULL,
+    token character varying NOT NULL,
     expiry timestamp without time zone NOT NULL,
     referer text
 );
     expiry timestamp without time zone NOT NULL,
     referer text
 );
@@ -1199,7 +1311,7 @@ CREATE TABLE user_tokens (
 -- Name: user_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: user_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE user_tokens_id_seq
+CREATE SEQUENCE public.user_tokens_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -1211,45 +1323,47 @@ CREATE SEQUENCE user_tokens_id_seq
 -- Name: user_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: user_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE user_tokens_id_seq OWNED BY user_tokens.id;
+ALTER SEQUENCE public.user_tokens_id_seq OWNED BY public.user_tokens.id;
 
 
 --
 -- Name: users; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: users; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE users (
-    email character varying(255) NOT NULL,
+CREATE TABLE public.users (
+    email character varying NOT NULL,
     id bigint NOT NULL,
     id bigint NOT NULL,
-    pass_crypt character varying(255) NOT NULL,
+    pass_crypt character varying NOT NULL,
     creation_time timestamp without time zone NOT NULL,
     creation_time timestamp without time zone NOT NULL,
-    display_name character varying(255) DEFAULT ''::character varying NOT NULL,
+    display_name character varying DEFAULT ''::character varying NOT NULL,
     data_public boolean DEFAULT false NOT NULL,
     description text DEFAULT ''::text NOT NULL,
     home_lat double precision,
     home_lon double precision,
     home_zoom smallint DEFAULT 3,
     nearby integer DEFAULT 50,
     data_public boolean DEFAULT false NOT NULL,
     description text DEFAULT ''::text NOT NULL,
     home_lat double precision,
     home_lon double precision,
     home_zoom smallint DEFAULT 3,
     nearby integer DEFAULT 50,
-    pass_salt character varying(255),
+    pass_salt character varying,
     image_file_name text,
     email_valid boolean DEFAULT false NOT NULL,
     image_file_name text,
     email_valid boolean DEFAULT false NOT NULL,
-    new_email character varying(255),
-    creation_ip character varying(255),
-    languages character varying(255),
-    status user_status_enum DEFAULT 'pending'::user_status_enum NOT NULL,
+    new_email character varying,
+    creation_ip character varying,
+    languages character varying,
+    status public.user_status_enum DEFAULT 'pending'::public.user_status_enum NOT NULL,
     terms_agreed timestamp without time zone,
     consider_pd boolean DEFAULT false NOT NULL,
     terms_agreed timestamp without time zone,
     consider_pd boolean DEFAULT false NOT NULL,
-    preferred_editor character varying(255),
+    auth_uid character varying,
+    preferred_editor character varying,
     terms_seen boolean DEFAULT false NOT NULL,
     terms_seen boolean DEFAULT false NOT NULL,
-    auth_uid character varying(255),
-    description_format format_enum DEFAULT 'markdown'::format_enum NOT NULL,
-    image_fingerprint character varying(255),
+    description_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL,
+    image_fingerprint character varying,
     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,
     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
+    image_content_type character varying,
+    auth_provider character varying,
+    home_tile bigint,
+    tou_agreed timestamp without time zone
 );
 
 
 );
 
 
@@ -1257,7 +1371,7 @@ CREATE TABLE users (
 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
 --
 
-CREATE SEQUENCE users_id_seq
+CREATE SEQUENCE public.users_id_seq
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
     START WITH 1
     INCREMENT BY 1
     NO MINVALUE
@@ -1269,14 +1383,14 @@ CREATE SEQUENCE users_id_seq
 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
 --
 
-ALTER SEQUENCE users_id_seq OWNED BY users.id;
+ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
 
 
 --
 -- Name: way_nodes; Type: TABLE; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: way_nodes; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE way_nodes (
+CREATE TABLE public.way_nodes (
     way_id bigint NOT NULL,
     node_id bigint NOT NULL,
     version bigint NOT NULL,
     way_id bigint NOT NULL,
     node_id bigint NOT NULL,
     version bigint NOT NULL,
@@ -1288,10 +1402,10 @@ CREATE TABLE way_nodes (
 -- Name: way_tags; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: way_tags; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE way_tags (
+CREATE TABLE public.way_tags (
     way_id bigint DEFAULT 0 NOT NULL,
     way_id bigint DEFAULT 0 NOT NULL,
-    k character varying(255) NOT NULL,
-    v character varying(255) NOT NULL,
+    k character varying NOT NULL,
+    v character varying NOT NULL,
     version bigint NOT NULL
 );
 
     version bigint NOT NULL
 );
 
@@ -1300,7 +1414,7 @@ CREATE TABLE way_tags (
 -- Name: ways; Type: TABLE; Schema: public; Owner: -
 --
 
 -- Name: ways; Type: TABLE; Schema: public; Owner: -
 --
 
-CREATE TABLE ways (
+CREATE TABLE public.ways (
     way_id bigint DEFAULT 0 NOT NULL,
     changeset_id bigint NOT NULL,
     "timestamp" timestamp without time zone NOT NULL,
     way_id bigint DEFAULT 0 NOT NULL,
     changeset_id bigint NOT NULL,
     "timestamp" timestamp without time zone NOT NULL,
@@ -1311,513 +1425,566 @@ 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);
+ALTER TABLE ONLY public.acls ALTER COLUMN id SET DEFAULT nextval('public.acls_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: active_storage_attachments id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY changeset_comments ALTER COLUMN id SET DEFAULT nextval('changeset_comments_id_seq'::regclass);
+ALTER TABLE ONLY public.active_storage_attachments ALTER COLUMN id SET DEFAULT nextval('public.active_storage_attachments_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: active_storage_blobs id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY changesets ALTER COLUMN id SET DEFAULT nextval('changesets_id_seq'::regclass);
+ALTER TABLE ONLY public.active_storage_blobs ALTER COLUMN id SET DEFAULT nextval('public.active_storage_blobs_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: changeset_comments 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 public.changeset_comments ALTER COLUMN id SET DEFAULT nextval('public.changeset_comments_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: changesets id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY current_nodes ALTER COLUMN id SET DEFAULT nextval('current_nodes_id_seq'::regclass);
+ALTER TABLE ONLY public.changesets ALTER COLUMN id SET DEFAULT nextval('public.changesets_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: client_applications id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY current_relations ALTER COLUMN id SET DEFAULT nextval('current_relations_id_seq'::regclass);
+ALTER TABLE ONLY public.client_applications ALTER COLUMN id SET DEFAULT nextval('public.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_ways ALTER COLUMN id SET DEFAULT nextval('current_ways_id_seq'::regclass);
+ALTER TABLE ONLY public.current_nodes ALTER COLUMN id SET DEFAULT nextval('public.current_nodes_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: current_relations id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY diary_comments ALTER COLUMN id SET DEFAULT nextval('diary_comments_id_seq'::regclass);
+ALTER TABLE ONLY public.current_relations ALTER COLUMN id SET DEFAULT nextval('public.current_relations_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: current_ways id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY diary_entries ALTER COLUMN id SET DEFAULT nextval('diary_entries_id_seq'::regclass);
+ALTER TABLE ONLY public.current_ways ALTER COLUMN id SET DEFAULT nextval('public.current_ways_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: delayed_jobs id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY friends ALTER COLUMN id SET DEFAULT nextval('friends_id_seq'::regclass);
+ALTER TABLE ONLY public.delayed_jobs ALTER COLUMN id SET DEFAULT nextval('public.delayed_jobs_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: diary_comments id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY gpx_file_tags ALTER COLUMN id SET DEFAULT nextval('gpx_file_tags_id_seq'::regclass);
+ALTER TABLE ONLY public.diary_comments ALTER COLUMN id SET DEFAULT nextval('public.diary_comments_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: diary_entries id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY gpx_files ALTER COLUMN id SET DEFAULT nextval('gpx_files_id_seq'::regclass);
+ALTER TABLE ONLY public.diary_entries ALTER COLUMN id SET DEFAULT nextval('public.diary_entries_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: friends id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY issue_comments ALTER COLUMN id SET DEFAULT nextval('issue_comments_id_seq'::regclass);
+ALTER TABLE ONLY public.friends ALTER COLUMN id SET DEFAULT nextval('public.friends_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: gpx_file_tags id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY issues ALTER COLUMN id SET DEFAULT nextval('issues_id_seq'::regclass);
+ALTER TABLE ONLY public.gpx_file_tags ALTER COLUMN id SET DEFAULT nextval('public.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 messages ALTER COLUMN id SET DEFAULT nextval('messages_id_seq'::regclass);
+ALTER TABLE ONLY public.gpx_files ALTER COLUMN id SET DEFAULT nextval('public.gpx_files_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: issue_comments id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY note_comments ALTER COLUMN id SET DEFAULT nextval('note_comments_id_seq'::regclass);
+ALTER TABLE ONLY public.issue_comments ALTER COLUMN id SET DEFAULT nextval('public.issue_comments_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: issues id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY notes ALTER COLUMN id SET DEFAULT nextval('notes_id_seq'::regclass);
+ALTER TABLE ONLY public.issues ALTER COLUMN id SET DEFAULT nextval('public.issues_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: messages id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY oauth_nonces ALTER COLUMN id SET DEFAULT nextval('oauth_nonces_id_seq'::regclass);
+ALTER TABLE ONLY public.messages ALTER COLUMN id SET DEFAULT nextval('public.messages_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: note_comments id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY oauth_tokens ALTER COLUMN id SET DEFAULT nextval('oauth_tokens_id_seq'::regclass);
+ALTER TABLE ONLY public.note_comments ALTER COLUMN id SET DEFAULT nextval('public.note_comments_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: notes id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY redactions ALTER COLUMN id SET DEFAULT nextval('redactions_id_seq'::regclass);
+ALTER TABLE ONLY public.notes ALTER COLUMN id SET DEFAULT nextval('public.notes_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: oauth_nonces id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY reports ALTER COLUMN id SET DEFAULT nextval('reports_id_seq'::regclass);
+ALTER TABLE ONLY public.oauth_nonces ALTER COLUMN id SET DEFAULT nextval('public.oauth_nonces_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: oauth_tokens id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY user_blocks ALTER COLUMN id SET DEFAULT nextval('user_blocks_id_seq'::regclass);
+ALTER TABLE ONLY public.oauth_tokens ALTER COLUMN id SET DEFAULT nextval('public.oauth_tokens_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: redactions id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY user_roles ALTER COLUMN id SET DEFAULT nextval('user_roles_id_seq'::regclass);
+ALTER TABLE ONLY public.redactions ALTER COLUMN id SET DEFAULT nextval('public.redactions_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: reports id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY user_tokens ALTER COLUMN id SET DEFAULT nextval('user_tokens_id_seq'::regclass);
+ALTER TABLE ONLY public.reports ALTER COLUMN id SET DEFAULT nextval('public.reports_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: id; Type: DEFAULT; Schema: public; Owner: -
+-- Name: user_blocks id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
+ALTER TABLE ONLY public.user_blocks ALTER COLUMN id SET DEFAULT nextval('public.user_blocks_id_seq'::regclass);
 
 
 --
 
 
 --
--- Name: acls_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: user_roles id; Type: DEFAULT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY acls
+ALTER TABLE ONLY public.user_roles ALTER COLUMN id SET DEFAULT nextval('public.user_roles_id_seq'::regclass);
+
+
+--
+-- Name: user_tokens id; Type: DEFAULT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.user_tokens ALTER COLUMN id SET DEFAULT nextval('public.user_tokens_id_seq'::regclass);
+
+
+--
+-- Name: users id; Type: DEFAULT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
+
+
+--
+-- Name: acls acls_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.acls
     ADD CONSTRAINT acls_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT acls_pkey PRIMARY KEY (id);
 
 
 --
--- Name: ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: active_storage_attachments active_storage_attachments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY ar_internal_metadata
+ALTER TABLE ONLY public.active_storage_attachments
+    ADD CONSTRAINT active_storage_attachments_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: active_storage_blobs active_storage_blobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.active_storage_blobs
+    ADD CONSTRAINT active_storage_blobs_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.ar_internal_metadata
     ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key);
 
 
 --
     ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key);
 
 
 --
--- 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
+ALTER TABLE ONLY public.changeset_comments
     ADD CONSTRAINT changeset_comments_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT changeset_comments_pkey PRIMARY KEY (id);
 
 
 --
--- Name: changesets_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: changesets changesets_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY changesets
+ALTER TABLE ONLY public.changesets
     ADD CONSTRAINT changesets_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT changesets_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.client_applications
     ADD CONSTRAINT client_applications_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT client_applications_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.current_node_tags
     ADD CONSTRAINT current_node_tags_pkey PRIMARY KEY (node_id, k);
 
 
 --
     ADD CONSTRAINT current_node_tags_pkey PRIMARY KEY (node_id, k);
 
 
 --
--- 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
+ALTER TABLE ONLY public.current_nodes
     ADD CONSTRAINT current_nodes_pkey1 PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT current_nodes_pkey1 PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.current_relation_members
     ADD CONSTRAINT current_relation_members_pkey PRIMARY KEY (relation_id, member_type, member_id, member_role, sequence_id);
 
 
 --
     ADD CONSTRAINT current_relation_members_pkey PRIMARY KEY (relation_id, member_type, member_id, member_role, sequence_id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.current_relation_tags
     ADD CONSTRAINT current_relation_tags_pkey PRIMARY KEY (relation_id, k);
 
 
 --
     ADD CONSTRAINT current_relation_tags_pkey PRIMARY KEY (relation_id, k);
 
 
 --
--- 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
+ALTER TABLE ONLY public.current_relations
     ADD CONSTRAINT current_relations_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT current_relations_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.current_way_nodes
     ADD CONSTRAINT current_way_nodes_pkey PRIMARY KEY (way_id, sequence_id);
 
 
 --
     ADD CONSTRAINT current_way_nodes_pkey PRIMARY KEY (way_id, sequence_id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.current_way_tags
     ADD CONSTRAINT current_way_tags_pkey PRIMARY KEY (way_id, k);
 
 
 --
     ADD CONSTRAINT current_way_tags_pkey PRIMARY KEY (way_id, k);
 
 
 --
--- 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
+ALTER TABLE ONLY public.current_ways
     ADD CONSTRAINT current_ways_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT current_ways_pkey PRIMARY KEY (id);
 
 
 --
--- Name: diary_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: delayed_jobs delayed_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.delayed_jobs
+    ADD CONSTRAINT delayed_jobs_pkey PRIMARY KEY (id);
+
+
+--
+-- Name: diary_comments diary_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY diary_comments
+ALTER TABLE ONLY public.diary_comments
     ADD CONSTRAINT diary_comments_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT diary_comments_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.diary_entries
     ADD CONSTRAINT diary_entries_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT diary_entries_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.diary_entry_subscriptions
     ADD CONSTRAINT diary_entry_subscriptions_pkey PRIMARY KEY (user_id, diary_entry_id);
 
 
 --
     ADD CONSTRAINT diary_entry_subscriptions_pkey PRIMARY KEY (user_id, diary_entry_id);
 
 
 --
--- Name: friends_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: friends friends_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY friends
+ALTER TABLE ONLY public.friends
     ADD CONSTRAINT friends_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT friends_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.gpx_file_tags
     ADD CONSTRAINT gpx_file_tags_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT gpx_file_tags_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.gpx_files
     ADD CONSTRAINT gpx_files_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT gpx_files_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.issue_comments
     ADD CONSTRAINT issue_comments_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT issue_comments_pkey PRIMARY KEY (id);
 
 
 --
--- Name: issues_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: issues issues_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY issues
+ALTER TABLE ONLY public.issues
     ADD CONSTRAINT issues_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT issues_pkey PRIMARY KEY (id);
 
 
 --
--- Name: languages_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: languages languages_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY languages
+ALTER TABLE ONLY public.languages
     ADD CONSTRAINT languages_pkey PRIMARY KEY (code);
 
 
 --
     ADD CONSTRAINT languages_pkey PRIMARY KEY (code);
 
 
 --
--- Name: messages_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: messages messages_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY messages
+ALTER TABLE ONLY public.messages
     ADD CONSTRAINT messages_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT messages_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.node_tags
     ADD CONSTRAINT node_tags_pkey PRIMARY KEY (node_id, version, k);
 
 
 --
     ADD CONSTRAINT node_tags_pkey PRIMARY KEY (node_id, version, k);
 
 
 --
--- Name: nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: nodes nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY nodes
+ALTER TABLE ONLY public.nodes
     ADD CONSTRAINT nodes_pkey PRIMARY KEY (node_id, version);
 
 
 --
     ADD CONSTRAINT nodes_pkey PRIMARY KEY (node_id, version);
 
 
 --
--- 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
+ALTER TABLE ONLY public.note_comments
     ADD CONSTRAINT note_comments_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT note_comments_pkey PRIMARY KEY (id);
 
 
 --
--- Name: notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: notes notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY notes
+ALTER TABLE ONLY public.notes
     ADD CONSTRAINT notes_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT notes_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.oauth_nonces
     ADD CONSTRAINT oauth_nonces_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT oauth_nonces_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.oauth_tokens
     ADD CONSTRAINT oauth_tokens_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT oauth_tokens_pkey PRIMARY KEY (id);
 
 
 --
--- Name: redactions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: redactions redactions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY redactions
+ALTER TABLE ONLY public.redactions
     ADD CONSTRAINT redactions_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT redactions_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.relation_members
     ADD CONSTRAINT relation_members_pkey PRIMARY KEY (relation_id, version, member_type, member_id, member_role, sequence_id);
 
 
 --
     ADD CONSTRAINT relation_members_pkey PRIMARY KEY (relation_id, version, member_type, member_id, member_role, sequence_id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.relation_tags
     ADD CONSTRAINT relation_tags_pkey PRIMARY KEY (relation_id, version, k);
 
 
 --
     ADD CONSTRAINT relation_tags_pkey PRIMARY KEY (relation_id, version, k);
 
 
 --
--- Name: relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: relations relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY relations
+ALTER TABLE ONLY public.relations
     ADD CONSTRAINT relations_pkey PRIMARY KEY (relation_id, version);
 
 
 --
     ADD CONSTRAINT relations_pkey PRIMARY KEY (relation_id, version);
 
 
 --
--- Name: reports_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: reports reports_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY reports
+ALTER TABLE ONLY public.reports
     ADD CONSTRAINT reports_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT reports_pkey PRIMARY KEY (id);
 
 
 --
--- Name: user_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY user_blocks
+ALTER TABLE ONLY public.schema_migrations
+    ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version);
+
+
+--
+-- Name: user_blocks user_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.user_blocks
     ADD CONSTRAINT user_blocks_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT user_blocks_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.user_preferences
     ADD CONSTRAINT user_preferences_pkey PRIMARY KEY (user_id, k);
 
 
 --
     ADD CONSTRAINT user_preferences_pkey PRIMARY KEY (user_id, k);
 
 
 --
--- 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
+ALTER TABLE ONLY public.user_roles
     ADD CONSTRAINT user_roles_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT user_roles_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.user_tokens
     ADD CONSTRAINT user_tokens_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT user_tokens_pkey PRIMARY KEY (id);
 
 
 --
--- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY users
+ALTER TABLE ONLY public.users
     ADD CONSTRAINT users_pkey PRIMARY KEY (id);
 
 
 --
     ADD CONSTRAINT users_pkey PRIMARY KEY (id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.way_nodes
     ADD CONSTRAINT way_nodes_pkey PRIMARY KEY (way_id, version, sequence_id);
 
 
 --
     ADD CONSTRAINT way_nodes_pkey PRIMARY KEY (way_id, version, sequence_id);
 
 
 --
--- 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
+ALTER TABLE ONLY public.way_tags
     ADD CONSTRAINT way_tags_pkey PRIMARY KEY (way_id, version, k);
 
 
 --
     ADD CONSTRAINT way_tags_pkey PRIMARY KEY (way_id, version, k);
 
 
 --
--- Name: ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -
+-- Name: ways ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY ways
+ALTER TABLE ONLY public.ways
     ADD CONSTRAINT ways_pkey PRIMARY KEY (way_id, version);
 
 
     ADD CONSTRAINT ways_pkey PRIMARY KEY (way_id, version);
 
 
@@ -1825,954 +1992,1033 @@ ALTER TABLE ONLY ways
 -- Name: acls_k_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 -- Name: acls_k_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX acls_k_idx ON acls USING btree (k);
+CREATE INDEX acls_k_idx ON public.acls USING btree (k);
 
 
 --
 -- Name: changeset_tags_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: changeset_tags_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX changeset_tags_id_idx ON changeset_tags USING btree (changeset_id);
+CREATE INDEX changeset_tags_id_idx ON public.changeset_tags USING btree (changeset_id);
 
 
 --
 -- Name: changesets_bbox_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX changesets_bbox_idx ON public.changesets USING gist (min_lat, max_lat, min_lon, max_lon);
 
 
 --
 -- Name: changesets_closed_at_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: changesets_closed_at_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX changesets_closed_at_idx ON changesets USING btree (closed_at);
+CREATE INDEX changesets_closed_at_idx ON public.changesets USING btree (closed_at);
 
 
 --
 -- Name: changesets_created_at_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: changesets_created_at_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX changesets_created_at_idx ON changesets USING btree (created_at);
+CREATE INDEX changesets_created_at_idx ON public.changesets USING btree (created_at);
 
 
 --
 -- Name: changesets_user_id_created_at_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX changesets_user_id_created_at_idx ON public.changesets USING btree (user_id, created_at);
 
 
 --
 -- Name: changesets_user_id_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX changesets_user_id_id_idx ON public.changesets USING btree (user_id, id);
 
 
 --
 -- Name: current_nodes_tile_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: current_nodes_tile_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX current_nodes_tile_idx ON current_nodes USING btree (tile);
+CREATE INDEX current_nodes_tile_idx ON public.current_nodes USING btree (tile);
 
 
 --
 -- Name: current_nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: current_nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX current_nodes_timestamp_idx ON current_nodes USING btree ("timestamp");
+CREATE INDEX current_nodes_timestamp_idx ON public.current_nodes USING btree ("timestamp");
 
 
 --
 -- Name: current_relation_members_member_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX current_relation_members_member_idx ON public.current_relation_members USING btree (member_type, member_id);
 
 
 --
 -- Name: current_relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: current_relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX current_relations_timestamp_idx ON current_relations USING btree ("timestamp");
+CREATE INDEX current_relations_timestamp_idx ON public.current_relations USING btree ("timestamp");
 
 
 --
 -- Name: current_way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX current_way_nodes_node_idx ON public.current_way_nodes USING btree (node_id);
 
 
 --
 -- Name: current_ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: current_ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX current_ways_timestamp_idx ON current_ways USING btree ("timestamp");
+CREATE INDEX current_ways_timestamp_idx ON public.current_ways USING btree ("timestamp");
+
+
+--
+-- Name: delayed_jobs_priority; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX delayed_jobs_priority ON public.delayed_jobs USING btree (priority, run_at);
 
 
 --
 -- Name: diary_comment_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX diary_comment_user_id_created_at_index ON public.diary_comments USING btree (user_id, created_at);
 
 
 --
 -- Name: diary_comments_entry_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE UNIQUE INDEX diary_comments_entry_id_idx ON public.diary_comments USING btree (diary_entry_id, id);
 
 
 --
 -- Name: diary_entry_created_at_index; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX diary_entry_created_at_index ON public.diary_entries USING btree (created_at);
 
 
 --
 -- Name: diary_entry_language_code_created_at_index; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX diary_entry_language_code_created_at_index ON public.diary_entries USING btree (language_code, created_at);
 
 
 --
 -- Name: diary_entry_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX diary_entry_user_id_created_at_index ON public.diary_entries USING btree (user_id, created_at);
 
 
 --
 -- Name: friends_user_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: friends_user_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX friends_user_id_idx ON friends USING btree (user_id);
+CREATE INDEX friends_user_id_idx ON public.friends USING btree (user_id);
 
 
 --
 -- Name: gpx_file_tags_gpxid_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX gpx_file_tags_gpxid_idx ON public.gpx_file_tags USING btree (gpx_id);
 
 
 --
 -- Name: gpx_file_tags_tag_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX gpx_file_tags_tag_idx ON public.gpx_file_tags USING btree (tag);
 
 
 --
 -- Name: gpx_files_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: gpx_files_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX gpx_files_timestamp_idx ON gpx_files USING btree ("timestamp");
+CREATE INDEX gpx_files_timestamp_idx ON public.gpx_files USING btree ("timestamp");
 
 
 --
 -- Name: gpx_files_user_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX gpx_files_user_id_idx ON public.gpx_files USING btree (user_id);
 
 
 --
 -- Name: gpx_files_visible_visibility_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX gpx_files_visible_visibility_idx ON public.gpx_files USING btree (visible, visibility);
+
+
+--
+-- Name: index_acls_on_address; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX index_acls_on_address ON public.acls USING gist (address inet_ops);
+
+
+--
+-- Name: index_acls_on_domain; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX index_acls_on_domain ON public.acls USING btree (domain);
+
+
+--
+-- Name: index_acls_on_mx; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX index_acls_on_mx ON public.acls USING btree (mx);
+
+
+--
+-- Name: index_active_storage_attachments_on_blob_id; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX index_active_storage_attachments_on_blob_id ON public.active_storage_attachments USING btree (blob_id);
+
+
+--
+-- Name: index_active_storage_attachments_uniqueness; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE UNIQUE INDEX index_active_storage_attachments_uniqueness ON public.active_storage_attachments USING btree (record_type, record_id, name, blob_id);
+
+
+--
+-- Name: index_active_storage_blobs_on_key; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE UNIQUE INDEX index_active_storage_blobs_on_key ON public.active_storage_blobs USING btree (key);
 
 
 --
 -- Name: index_changeset_comments_on_created_at; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX index_changeset_comments_on_created_at ON public.changeset_comments USING btree (created_at);
 
 
 --
 -- Name: index_changesets_subscribers_on_changeset_id; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX index_changesets_subscribers_on_changeset_id ON public.changesets_subscribers USING btree (changeset_id);
 
 
 --
 -- Name: index_changesets_subscribers_on_subscriber_id_and_changeset_id; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE UNIQUE INDEX index_changesets_subscribers_on_subscriber_id_and_changeset_id ON public.changesets_subscribers USING btree (subscriber_id, changeset_id);
 
 
 --
 -- Name: index_client_applications_on_key; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE UNIQUE INDEX index_client_applications_on_key ON public.client_applications USING btree (key);
 
 
 --
 -- Name: index_client_applications_on_user_id; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: index_client_applications_on_user_id; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX index_client_applications_on_user_id ON client_applications USING btree (user_id);
+CREATE INDEX index_client_applications_on_user_id ON public.client_applications USING btree (user_id);
 
 
 --
 -- Name: index_diary_entry_subscriptions_on_diary_entry_id; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: index_diary_entry_subscriptions_on_diary_entry_id; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX index_diary_entry_subscriptions_on_diary_entry_id ON diary_entry_subscriptions USING btree (diary_entry_id);
+CREATE INDEX index_diary_entry_subscriptions_on_diary_entry_id ON public.diary_entry_subscriptions USING btree (diary_entry_id);
 
 
 --
 
 
 --
--- 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 public.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_user_id ON public.issue_comments USING btree (user_id);
+
+
+--
+-- Name: index_issues_on_assigned_role; Type: INDEX; Schema: public; Owner: -
 --
 
 --
 
-CREATE INDEX index_issue_comments_on_issue_id ON issue_comments USING btree (issue_id);
+CREATE INDEX index_issues_on_assigned_role ON public.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 public.issues USING btree (reportable_type, reportable_id);
 
 
 --
 -- Name: index_issues_on_reported_user_id; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: index_issues_on_reported_user_id; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX index_issues_on_reported_user_id ON issues USING btree (reported_user_id);
+CREATE INDEX index_issues_on_reported_user_id ON public.issues USING btree (reported_user_id);
+
+
+--
+-- Name: index_issues_on_status; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX index_issues_on_status ON public.issues USING btree (status);
 
 
 --
 -- Name: index_issues_on_updated_by; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: index_issues_on_updated_by; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX index_issues_on_updated_by ON issues USING btree (updated_by);
+CREATE INDEX index_issues_on_updated_by ON public.issues USING btree (updated_by);
 
 
 --
 -- Name: index_note_comments_on_body; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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));
+CREATE INDEX index_note_comments_on_body ON public.note_comments USING gin (to_tsvector('english'::regconfig, body));
 
 
 --
 -- Name: index_note_comments_on_created_at; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX index_note_comments_on_created_at ON public.note_comments USING btree (created_at);
 
 
 --
 -- Name: index_oauth_nonces_on_nonce_and_timestamp; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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");
+CREATE UNIQUE INDEX index_oauth_nonces_on_nonce_and_timestamp ON public.oauth_nonces USING btree (nonce, "timestamp");
 
 
 --
 -- Name: index_oauth_tokens_on_token; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE UNIQUE INDEX index_oauth_tokens_on_token ON public.oauth_tokens USING btree (token);
 
 
 --
 -- Name: index_oauth_tokens_on_user_id; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: index_oauth_tokens_on_user_id; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX index_oauth_tokens_on_user_id ON oauth_tokens USING btree (user_id);
+CREATE INDEX index_oauth_tokens_on_user_id ON public.oauth_tokens USING btree (user_id);
 
 
 --
 -- Name: index_reports_on_issue_id; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: index_reports_on_issue_id; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX index_reports_on_issue_id ON reports USING btree (issue_id);
+CREATE INDEX index_reports_on_issue_id ON public.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 public.reports USING btree (user_id);
 
 
 --
 -- Name: index_user_blocks_on_user_id; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX index_user_blocks_on_user_id ON public.user_blocks USING btree (user_id);
 
 
 --
 -- Name: messages_from_user_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX messages_from_user_id_idx ON public.messages USING btree (from_user_id);
 
 
 --
 -- Name: messages_to_user_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX messages_to_user_id_idx ON public.messages USING btree (to_user_id);
 
 
 --
 -- Name: nodes_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: nodes_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX nodes_changeset_id_idx ON nodes USING btree (changeset_id);
+CREATE INDEX nodes_changeset_id_idx ON public.nodes USING btree (changeset_id);
 
 
 --
 -- Name: nodes_tile_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: nodes_tile_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX nodes_tile_idx ON nodes USING btree (tile);
+CREATE INDEX nodes_tile_idx ON public.nodes USING btree (tile);
 
 
 --
 -- Name: nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX nodes_timestamp_idx ON nodes USING btree ("timestamp");
+CREATE INDEX nodes_timestamp_idx ON public.nodes USING btree ("timestamp");
 
 
 --
 -- Name: note_comments_note_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX note_comments_note_id_idx ON public.note_comments USING btree (note_id);
 
 
 --
 -- Name: notes_created_at_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: notes_created_at_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX notes_created_at_idx ON notes USING btree (created_at);
+CREATE INDEX notes_created_at_idx ON public.notes USING btree (created_at);
 
 
 --
 -- Name: notes_tile_status_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: notes_tile_status_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX notes_tile_status_idx ON notes USING btree (tile, status);
+CREATE INDEX notes_tile_status_idx ON public.notes USING btree (tile, status);
 
 
 --
 -- Name: notes_updated_at_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: notes_updated_at_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX notes_updated_at_idx ON notes USING btree (updated_at);
+CREATE INDEX notes_updated_at_idx ON public.notes USING btree (updated_at);
 
 
 --
 -- Name: points_gpxid_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: points_gpxid_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX points_gpxid_idx ON gps_points USING btree (gpx_id);
+CREATE INDEX points_gpxid_idx ON public.gps_points USING btree (gpx_id);
 
 
 --
 -- Name: points_tile_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: points_tile_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX points_tile_idx ON gps_points USING btree (tile);
+CREATE INDEX points_tile_idx ON public.gps_points USING btree (tile);
 
 
 --
 -- Name: relation_members_member_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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);
+CREATE INDEX relation_members_member_idx ON public.relation_members USING btree (member_type, member_id);
 
 
 --
 -- Name: relations_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: relations_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX relations_changeset_id_idx ON relations USING btree (changeset_id);
+CREATE INDEX relations_changeset_id_idx ON public.relations USING btree (changeset_id);
 
 
 --
 -- Name: relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX relations_timestamp_idx ON relations USING btree ("timestamp");
-
-
---
--- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -
---
-
-CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
+CREATE INDEX relations_timestamp_idx ON public.relations USING btree ("timestamp");
 
 
 --
 -- Name: user_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: user_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX user_id_idx ON friends USING btree (friend_user_id);
+CREATE INDEX user_id_idx ON public.friends USING btree (friend_user_id);
 
 
 --
 -- Name: user_roles_id_role_unique; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: user_roles_id_role_unique; 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_roles_id_role_unique ON public.user_roles USING btree (user_id, role);
 
 
 --
 -- Name: user_tokens_token_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: user_tokens_token_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE UNIQUE INDEX user_tokens_token_idx ON user_tokens USING btree (token);
+CREATE UNIQUE INDEX user_tokens_token_idx ON public.user_tokens USING btree (token);
 
 
 --
 -- Name: user_tokens_user_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: user_tokens_user_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX user_tokens_user_id_idx ON user_tokens USING btree (user_id);
+CREATE INDEX user_tokens_user_id_idx ON public.user_tokens USING btree (user_id);
 
 
 --
 -- Name: users_auth_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: users_auth_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE UNIQUE INDEX users_auth_idx ON users USING btree (auth_provider, auth_uid);
+CREATE UNIQUE INDEX users_auth_idx ON public.users USING btree (auth_provider, auth_uid);
 
 
 --
 -- Name: users_display_name_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: users_display_name_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE UNIQUE INDEX users_display_name_idx ON users USING btree (display_name);
+CREATE UNIQUE INDEX users_display_name_idx ON public.users USING btree (display_name);
 
 
 --
 -- Name: users_display_name_lower_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- 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));
+CREATE INDEX users_display_name_lower_idx ON public.users USING btree (lower((display_name)::text));
 
 
 --
 -- Name: users_email_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: users_email_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE UNIQUE INDEX users_email_idx ON users USING btree (email);
+CREATE UNIQUE INDEX users_email_idx ON public.users USING btree (email);
 
 
 --
 -- Name: users_email_lower_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: users_email_lower_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX users_email_lower_idx ON users USING btree (lower((email)::text));
+CREATE INDEX users_email_lower_idx ON public.users USING btree (lower((email)::text));
+
+
+--
+-- Name: users_home_idx; Type: INDEX; Schema: public; Owner: -
+--
+
+CREATE INDEX users_home_idx ON public.users USING btree (home_tile);
 
 
 --
 -- Name: way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX way_nodes_node_idx ON way_nodes USING btree (node_id);
+CREATE INDEX way_nodes_node_idx ON public.way_nodes USING btree (node_id);
 
 
 --
 -- Name: ways_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: ways_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX ways_changeset_id_idx ON ways USING btree (changeset_id);
+CREATE INDEX ways_changeset_id_idx ON public.ways USING btree (changeset_id);
 
 
 --
 -- Name: ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
 
 
 --
 -- Name: ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -
 --
 
-CREATE INDEX ways_timestamp_idx ON ways USING btree ("timestamp");
+CREATE INDEX ways_timestamp_idx ON public.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
-    ADD CONSTRAINT changeset_comments_author_id_fkey FOREIGN KEY (author_id) REFERENCES users(id);
+ALTER TABLE ONLY public.changeset_comments
+    ADD CONSTRAINT changeset_comments_author_id_fkey FOREIGN KEY (author_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT changeset_comments_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+ALTER TABLE ONLY public.changeset_comments
+    ADD CONSTRAINT changeset_comments_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT changeset_tags_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+ALTER TABLE ONLY public.changeset_tags
+    ADD CONSTRAINT changeset_tags_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT changesets_subscribers_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+ALTER TABLE ONLY public.changesets_subscribers
+    ADD CONSTRAINT changesets_subscribers_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT changesets_subscribers_subscriber_id_fkey FOREIGN KEY (subscriber_id) REFERENCES users(id);
+ALTER TABLE ONLY public.changesets_subscribers
+    ADD CONSTRAINT changesets_subscribers_subscriber_id_fkey FOREIGN KEY (subscriber_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT changesets_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.changesets
+    ADD CONSTRAINT changesets_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT client_applications_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.client_applications
+    ADD CONSTRAINT client_applications_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT current_node_tags_id_fkey FOREIGN KEY (node_id) REFERENCES current_nodes(id);
+ALTER TABLE ONLY public.current_node_tags
+    ADD CONSTRAINT current_node_tags_id_fkey FOREIGN KEY (node_id) REFERENCES public.current_nodes(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT current_nodes_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+ALTER TABLE ONLY public.current_nodes
+    ADD CONSTRAINT current_nodes_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT current_relation_members_id_fkey FOREIGN KEY (relation_id) REFERENCES current_relations(id);
+ALTER TABLE ONLY public.current_relation_members
+    ADD CONSTRAINT current_relation_members_id_fkey FOREIGN KEY (relation_id) REFERENCES public.current_relations(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT current_relation_tags_id_fkey FOREIGN KEY (relation_id) REFERENCES current_relations(id);
+ALTER TABLE ONLY public.current_relation_tags
+    ADD CONSTRAINT current_relation_tags_id_fkey FOREIGN KEY (relation_id) REFERENCES public.current_relations(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT current_relations_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+ALTER TABLE ONLY public.current_relations
+    ADD CONSTRAINT current_relations_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT current_way_nodes_id_fkey FOREIGN KEY (way_id) REFERENCES current_ways(id);
+ALTER TABLE ONLY public.current_way_nodes
+    ADD CONSTRAINT current_way_nodes_id_fkey FOREIGN KEY (way_id) REFERENCES public.current_ways(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT current_way_nodes_node_id_fkey FOREIGN KEY (node_id) REFERENCES current_nodes(id);
+ALTER TABLE ONLY public.current_way_nodes
+    ADD CONSTRAINT current_way_nodes_node_id_fkey FOREIGN KEY (node_id) REFERENCES public.current_nodes(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT current_way_tags_id_fkey FOREIGN KEY (way_id) REFERENCES current_ways(id);
+ALTER TABLE ONLY public.current_way_tags
+    ADD CONSTRAINT current_way_tags_id_fkey FOREIGN KEY (way_id) REFERENCES public.current_ways(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT current_ways_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+ALTER TABLE ONLY public.current_ways
+    ADD CONSTRAINT current_ways_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT diary_comments_diary_entry_id_fkey FOREIGN KEY (diary_entry_id) REFERENCES diary_entries(id);
+ALTER TABLE ONLY public.diary_comments
+    ADD CONSTRAINT diary_comments_diary_entry_id_fkey FOREIGN KEY (diary_entry_id) REFERENCES public.diary_entries(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT diary_comments_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.diary_comments
+    ADD CONSTRAINT diary_comments_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT diary_entries_language_code_fkey FOREIGN KEY (language_code) REFERENCES languages(code);
+ALTER TABLE ONLY public.diary_entries
+    ADD CONSTRAINT diary_entries_language_code_fkey FOREIGN KEY (language_code) REFERENCES public.languages(code);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT diary_entries_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.diary_entries
+    ADD CONSTRAINT diary_entries_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT diary_entry_subscriptions_diary_entry_id_fkey FOREIGN KEY (diary_entry_id) REFERENCES diary_entries(id);
+ALTER TABLE ONLY public.diary_entry_subscriptions
+    ADD CONSTRAINT diary_entry_subscriptions_diary_entry_id_fkey FOREIGN KEY (diary_entry_id) REFERENCES public.diary_entries(id);
 
 
 --
 
 
 --
--- 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
-    ADD CONSTRAINT diary_entry_subscriptions_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.diary_entry_subscriptions
+    ADD CONSTRAINT diary_entry_subscriptions_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: friends_friend_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: active_storage_attachments fk_rails_c3b3935057; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY friends
-    ADD CONSTRAINT friends_friend_user_id_fkey FOREIGN KEY (friend_user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.active_storage_attachments
+    ADD CONSTRAINT fk_rails_c3b3935057 FOREIGN KEY (blob_id) REFERENCES public.active_storage_blobs(id);
 
 
 --
 
 
 --
--- Name: friends_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
-    ADD CONSTRAINT friends_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.friends
+    ADD CONSTRAINT friends_friend_user_id_fkey FOREIGN KEY (friend_user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: gps_points_gpx_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: friends friends_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY gps_points
-    ADD CONSTRAINT gps_points_gpx_id_fkey FOREIGN KEY (gpx_id) REFERENCES gpx_files(id);
+ALTER TABLE ONLY public.friends
+    ADD CONSTRAINT friends_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: gpx_file_tags_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 gpx_file_tags
-    ADD CONSTRAINT gpx_file_tags_gpx_id_fkey FOREIGN KEY (gpx_id) REFERENCES gpx_files(id);
+ALTER TABLE ONLY public.gps_points
+    ADD CONSTRAINT gps_points_gpx_id_fkey FOREIGN KEY (gpx_id) REFERENCES public.gpx_files(id);
 
 
 --
 
 
 --
--- Name: gpx_files_user_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_files
-    ADD CONSTRAINT gpx_files_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.gpx_file_tags
+    ADD CONSTRAINT gpx_file_tags_gpx_id_fkey FOREIGN KEY (gpx_id) REFERENCES public.gpx_files(id);
 
 
 --
 
 
 --
--- Name: issue_comments_commenter_user_id; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: gpx_files gpx_files_user_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;
+ALTER TABLE ONLY public.gpx_files
+    ADD CONSTRAINT gpx_files_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: issue_comments_issue_id_fkey; 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_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES issues(id) ON DELETE CASCADE;
+ALTER TABLE ONLY public.issue_comments
+    ADD CONSTRAINT issue_comments_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES public.issues(id);
 
 
 --
 
 
 --
--- Name: issues_reported_user_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 issues
-    ADD CONSTRAINT issues_reported_user_id_fkey FOREIGN KEY (reported_user_id) REFERENCES users(id) ON DELETE CASCADE;
+ALTER TABLE ONLY public.issue_comments
+    ADD CONSTRAINT issue_comments_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: issues_updated_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: issues issues_reported_user_id_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;
+ALTER TABLE ONLY public.issues
+    ADD CONSTRAINT issues_reported_user_id_fkey FOREIGN KEY (reported_user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: messages_from_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: issues issues_resolved_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY messages
-    ADD CONSTRAINT messages_from_user_id_fkey FOREIGN KEY (from_user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.issues
+    ADD CONSTRAINT issues_resolved_by_fkey FOREIGN KEY (resolved_by) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: messages_to_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: issues issues_updated_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY messages
-    ADD CONSTRAINT messages_to_user_id_fkey FOREIGN KEY (to_user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.issues
+    ADD CONSTRAINT issues_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: node_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: messages messages_from_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY node_tags
-    ADD CONSTRAINT node_tags_id_fkey FOREIGN KEY (node_id, version) REFERENCES nodes(node_id, version);
+ALTER TABLE ONLY public.messages
+    ADD CONSTRAINT messages_from_user_id_fkey FOREIGN KEY (from_user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: messages messages_to_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY nodes
-    ADD CONSTRAINT nodes_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+ALTER TABLE ONLY public.messages
+    ADD CONSTRAINT messages_to_user_id_fkey FOREIGN KEY (to_user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: nodes_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: node_tags node_tags_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);
+ALTER TABLE ONLY public.node_tags
+    ADD CONSTRAINT node_tags_id_fkey FOREIGN KEY (node_id, version) REFERENCES public.nodes(node_id, version);
 
 
 --
 
 
 --
--- Name: note_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: nodes nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY note_comments
-    ADD CONSTRAINT note_comments_author_id_fkey FOREIGN KEY (author_id) REFERENCES users(id);
+ALTER TABLE ONLY public.nodes
+    ADD CONSTRAINT nodes_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
 
 
 --
 
 
 --
--- Name: note_comments_note_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: nodes nodes_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY note_comments
-    ADD CONSTRAINT note_comments_note_id_fkey FOREIGN KEY (note_id) REFERENCES notes(id);
+ALTER TABLE ONLY public.nodes
+    ADD CONSTRAINT nodes_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES public.redactions(id);
 
 
 --
 
 
 --
--- Name: oauth_tokens_client_application_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 oauth_tokens
-    ADD CONSTRAINT oauth_tokens_client_application_id_fkey FOREIGN KEY (client_application_id) REFERENCES client_applications(id);
+ALTER TABLE ONLY public.note_comments
+    ADD CONSTRAINT note_comments_author_id_fkey FOREIGN KEY (author_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: oauth_tokens_user_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 oauth_tokens
-    ADD CONSTRAINT oauth_tokens_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.note_comments
+    ADD CONSTRAINT note_comments_note_id_fkey FOREIGN KEY (note_id) REFERENCES public.notes(id);
 
 
 --
 
 
 --
--- Name: redactions_user_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 redactions
-    ADD CONSTRAINT redactions_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.oauth_tokens
+    ADD CONSTRAINT oauth_tokens_client_application_id_fkey FOREIGN KEY (client_application_id) REFERENCES public.client_applications(id);
 
 
 --
 
 
 --
--- Name: relation_members_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 relation_members
-    ADD CONSTRAINT relation_members_id_fkey FOREIGN KEY (relation_id, version) REFERENCES relations(relation_id, version);
+ALTER TABLE ONLY public.oauth_tokens
+    ADD CONSTRAINT oauth_tokens_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: relation_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: redactions redactions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY relation_tags
-    ADD CONSTRAINT relation_tags_id_fkey FOREIGN KEY (relation_id, version) REFERENCES relations(relation_id, version);
+ALTER TABLE ONLY public.redactions
+    ADD CONSTRAINT redactions_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: relations_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: relation_members relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY relations
-    ADD CONSTRAINT relations_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+ALTER TABLE ONLY public.relation_members
+    ADD CONSTRAINT relation_members_id_fkey FOREIGN KEY (relation_id, version) REFERENCES public.relations(relation_id, version);
 
 
 --
 
 
 --
--- Name: relations_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: relation_tags relation_tags_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);
+ALTER TABLE ONLY public.relation_tags
+    ADD CONSTRAINT relation_tags_id_fkey FOREIGN KEY (relation_id, version) REFERENCES public.relations(relation_id, version);
 
 
 --
 
 
 --
--- Name: reports_issue_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: relations relations_changeset_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;
+ALTER TABLE ONLY public.relations
+    ADD CONSTRAINT relations_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
 
 
 --
 
 
 --
--- Name: reports_reporter_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: relations relations_redaction_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;
+ALTER TABLE ONLY public.relations
+    ADD CONSTRAINT relations_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES public.redactions(id);
 
 
 --
 
 
 --
--- Name: user_blocks_moderator_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: reports reports_issue_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY user_blocks
-    ADD CONSTRAINT user_blocks_moderator_id_fkey FOREIGN KEY (creator_id) REFERENCES users(id);
+ALTER TABLE ONLY public.reports
+    ADD CONSTRAINT reports_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES public.issues(id);
 
 
 --
 
 
 --
--- Name: user_blocks_revoker_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: reports reports_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY user_blocks
-    ADD CONSTRAINT user_blocks_revoker_id_fkey FOREIGN KEY (revoker_id) REFERENCES users(id);
+ALTER TABLE ONLY public.reports
+    ADD CONSTRAINT reports_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: user_blocks_user_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
-    ADD CONSTRAINT user_blocks_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.user_blocks
+    ADD CONSTRAINT user_blocks_moderator_id_fkey FOREIGN KEY (creator_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: user_preferences_user_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_preferences
-    ADD CONSTRAINT user_preferences_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.user_blocks
+    ADD CONSTRAINT user_blocks_revoker_id_fkey FOREIGN KEY (revoker_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: user_roles_granter_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_roles
-    ADD CONSTRAINT user_roles_granter_id_fkey FOREIGN KEY (granter_id) REFERENCES users(id);
+ALTER TABLE ONLY public.user_blocks
+    ADD CONSTRAINT user_blocks_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: user_roles_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_roles
-    ADD CONSTRAINT user_roles_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.user_preferences
+    ADD CONSTRAINT user_preferences_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: user_tokens_user_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_tokens
-    ADD CONSTRAINT user_tokens_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
+ALTER TABLE ONLY public.user_roles
+    ADD CONSTRAINT user_roles_granter_id_fkey FOREIGN KEY (granter_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: way_nodes_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 way_nodes
-    ADD CONSTRAINT way_nodes_id_fkey FOREIGN KEY (way_id, version) REFERENCES ways(way_id, version);
+ALTER TABLE ONLY public.user_roles
+    ADD CONSTRAINT user_roles_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: way_tags_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 way_tags
-    ADD CONSTRAINT way_tags_id_fkey FOREIGN KEY (way_id, version) REFERENCES ways(way_id, version);
+ALTER TABLE ONLY public.user_tokens
+    ADD CONSTRAINT user_tokens_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
 
 
 --
 
 
 --
--- Name: ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: way_nodes way_nodes_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
 --
 
 --
 
-ALTER TABLE ONLY ways
-    ADD CONSTRAINT ways_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
+ALTER TABLE ONLY public.way_nodes
+    ADD CONSTRAINT way_nodes_id_fkey FOREIGN KEY (way_id, version) REFERENCES public.ways(way_id, version);
 
 
 --
 
 
 --
--- Name: ways_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+-- Name: way_tags way_tags_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);
+ALTER TABLE ONLY public.way_tags
+    ADD CONSTRAINT way_tags_id_fkey FOREIGN KEY (way_id, version) REFERENCES public.ways(way_id, version);
+
+
+--
+-- Name: ways ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.ways
+    ADD CONSTRAINT ways_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
+
+
+--
+-- Name: ways ways_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
+--
+
+ALTER TABLE ONLY public.ways
+    ADD CONSTRAINT ways_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES public.redactions(id);
 
 
 --
 
 
 --
@@ -2831,11 +3077,15 @@ INSERT INTO "schema_migrations" (version) VALUES
 ('20150222101847'),
 ('20150818224516'),
 ('20160822153055'),
 ('20150222101847'),
 ('20150818224516'),
 ('20160822153055'),
-('20160822153115'),
-('20160822153153'),
 ('20161002153425'),
 ('20161011010929'),
 ('20170222134109'),
 ('20161002153425'),
 ('20161011010929'),
 ('20170222134109'),
+('20180204153242'),
+('20181020114000'),
+('20181031113522'),
+('20190518115041'),
+('20190623093642'),
+('20190702193519'),
 ('21'),
 ('22'),
 ('23'),
 ('21'),
 ('22'),
 ('23'),
@@ -2880,3 +3130,5 @@ INSERT INTO "schema_migrations" (version) VALUES
 ('7'),
 ('8'),
 ('9');
 ('7'),
 ('8'),
 ('9');
+
+