1 SET statement_timeout = 0;
3 SET idle_in_transaction_session_timeout = 0;
4 SET client_encoding = 'UTF8';
5 SET standard_conforming_strings = on;
6 SELECT pg_catalog.set_config('search_path', '', false);
7 SET check_function_bodies = false;
8 SET xmloption = content;
9 SET client_min_messages = warning;
10 SET row_security = off;
13 -- Name: btree_gist; Type: EXTENSION; Schema: -; Owner: -
16 CREATE EXTENSION IF NOT EXISTS btree_gist WITH SCHEMA public;
20 -- Name: EXTENSION btree_gist; Type: COMMENT; Schema: -; Owner: -
23 COMMENT ON EXTENSION btree_gist IS 'support for indexing common datatypes in GiST';
27 -- Name: format_enum; Type: TYPE; Schema: public; Owner: -
30 CREATE TYPE public.format_enum AS ENUM (
38 -- Name: gpx_visibility_enum; Type: TYPE; Schema: public; Owner: -
41 CREATE TYPE public.gpx_visibility_enum AS ENUM (
50 -- Name: issue_status_enum; Type: TYPE; Schema: public; Owner: -
53 CREATE TYPE public.issue_status_enum AS ENUM (
61 -- Name: note_event_enum; Type: TYPE; Schema: public; Owner: -
64 CREATE TYPE public.note_event_enum AS ENUM (
74 -- Name: note_status_enum; Type: TYPE; Schema: public; Owner: -
77 CREATE TYPE public.note_status_enum AS ENUM (
85 -- Name: nwr_enum; Type: TYPE; Schema: public; Owner: -
88 CREATE TYPE public.nwr_enum AS ENUM (
96 -- Name: user_role_enum; Type: TYPE; Schema: public; Owner: -
99 CREATE TYPE public.user_role_enum AS ENUM (
107 -- Name: user_status_enum; Type: TYPE; Schema: public; Owner: -
110 CREATE TYPE public.user_status_enum AS ENUM (
120 -- Name: api_rate_limit(bigint); Type: FUNCTION; Schema: public; Owner: -
123 CREATE FUNCTION public.api_rate_limit(user_id bigint) RETURNS integer
124 LANGUAGE plpgsql STABLE
127 min_changes_per_hour int4 := 100;
128 initial_changes_per_hour int4 := 1000;
129 max_changes_per_hour int4 := 100000;
130 days_to_max_changes int4 := 7;
131 importer_changes_per_hour int4 := 1000000;
132 moderator_changes_per_hour int4 := 1000000;
134 last_block timestamp without time zone;
135 first_change timestamp without time zone;
137 time_since_first_change double precision;
138 max_changes double precision;
141 SELECT ARRAY_AGG(user_roles.role) INTO STRICT roles FROM user_roles WHERE user_roles.user_id = api_rate_limit.user_id;
143 IF 'moderator' = ANY(roles) THEN
144 max_changes := moderator_changes_per_hour;
145 ELSIF 'importer' = ANY(roles) THEN
146 max_changes := importer_changes_per_hour;
148 SELECT user_blocks.created_at INTO last_block FROM user_blocks WHERE user_blocks.user_id = api_rate_limit.user_id ORDER BY user_blocks.created_at DESC LIMIT 1;
151 SELECT changesets.created_at INTO first_change FROM changesets WHERE changesets.user_id = api_rate_limit.user_id AND changesets.created_at > last_block ORDER BY changesets.created_at LIMIT 1;
153 SELECT changesets.created_at INTO first_change FROM changesets WHERE changesets.user_id = api_rate_limit.user_id ORDER BY changesets.created_at LIMIT 1;
157 first_change := CURRENT_TIMESTAMP AT TIME ZONE 'UTC';
160 SELECT COUNT(*) INTO STRICT active_reports
161 FROM issues INNER JOIN reports ON reports.issue_id = issues.id
162 WHERE issues.reported_user_id = api_rate_limit.user_id AND issues.status = 'open' AND reports.updated_at >= COALESCE(issues.resolved_at, '1970-01-01');
164 time_since_first_change := EXTRACT(EPOCH FROM CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - first_change);
166 max_changes := max_changes_per_hour * POWER(time_since_first_change, 2) / POWER(days_to_max_changes * 24 * 60 * 60, 2);
167 max_changes := GREATEST(initial_changes_per_hour, LEAST(max_changes_per_hour, FLOOR(max_changes)));
168 max_changes := max_changes / POWER(2, active_reports);
169 max_changes := GREATEST(min_changes_per_hour, LEAST(max_changes_per_hour, max_changes));
172 SELECT COALESCE(SUM(changesets.num_changes), 0) INTO STRICT recent_changes FROM changesets WHERE changesets.user_id = api_rate_limit.user_id AND changesets.created_at >= CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - '1 hour'::interval;
174 RETURN max_changes - recent_changes;
179 SET default_tablespace = '';
181 SET default_table_access_method = heap;
184 -- Name: acls; Type: TABLE; Schema: public; Owner: -
187 CREATE TABLE public.acls (
190 k character varying NOT NULL,
192 domain character varying,
198 -- Name: acls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
201 CREATE SEQUENCE public.acls_id_seq
210 -- Name: acls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
213 ALTER SEQUENCE public.acls_id_seq OWNED BY public.acls.id;
217 -- Name: active_storage_attachments; Type: TABLE; Schema: public; Owner: -
220 CREATE TABLE public.active_storage_attachments (
222 name character varying NOT NULL,
223 record_type character varying NOT NULL,
224 record_id bigint NOT NULL,
225 blob_id bigint NOT NULL,
226 created_at timestamp without time zone NOT NULL
231 -- Name: active_storage_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
234 CREATE SEQUENCE public.active_storage_attachments_id_seq
243 -- Name: active_storage_attachments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
246 ALTER SEQUENCE public.active_storage_attachments_id_seq OWNED BY public.active_storage_attachments.id;
250 -- Name: active_storage_blobs; Type: TABLE; Schema: public; Owner: -
253 CREATE TABLE public.active_storage_blobs (
255 key character varying NOT NULL,
256 filename character varying NOT NULL,
257 content_type character varying,
259 byte_size bigint NOT NULL,
260 checksum character varying,
261 created_at timestamp without time zone NOT NULL,
262 service_name character varying NOT NULL
267 -- Name: active_storage_blobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
270 CREATE SEQUENCE public.active_storage_blobs_id_seq
279 -- Name: active_storage_blobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
282 ALTER SEQUENCE public.active_storage_blobs_id_seq OWNED BY public.active_storage_blobs.id;
286 -- Name: active_storage_variant_records; Type: TABLE; Schema: public; Owner: -
289 CREATE TABLE public.active_storage_variant_records (
291 blob_id bigint NOT NULL,
292 variation_digest character varying NOT NULL
297 -- Name: active_storage_variant_records_id_seq; Type: SEQUENCE; Schema: public; Owner: -
300 CREATE SEQUENCE public.active_storage_variant_records_id_seq
309 -- Name: active_storage_variant_records_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
312 ALTER SEQUENCE public.active_storage_variant_records_id_seq OWNED BY public.active_storage_variant_records.id;
316 -- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
319 CREATE TABLE public.ar_internal_metadata (
320 key character varying NOT NULL,
321 value character varying,
322 created_at timestamp(6) without time zone NOT NULL,
323 updated_at timestamp(6) without time zone NOT NULL
328 -- Name: changeset_comments; Type: TABLE; Schema: public; Owner: -
331 CREATE TABLE public.changeset_comments (
333 changeset_id bigint NOT NULL,
334 author_id bigint NOT NULL,
336 created_at timestamp without time zone NOT NULL,
337 visible boolean NOT NULL
342 -- Name: changeset_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
345 CREATE SEQUENCE public.changeset_comments_id_seq
355 -- Name: changeset_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
358 ALTER SEQUENCE public.changeset_comments_id_seq OWNED BY public.changeset_comments.id;
362 -- Name: changeset_tags; Type: TABLE; Schema: public; Owner: -
365 CREATE TABLE public.changeset_tags (
366 changeset_id bigint NOT NULL,
367 k character varying DEFAULT ''::character varying NOT NULL,
368 v character varying DEFAULT ''::character varying NOT NULL
373 -- Name: changesets; Type: TABLE; Schema: public; Owner: -
376 CREATE TABLE public.changesets (
378 user_id bigint NOT NULL,
379 created_at timestamp without time zone NOT NULL,
384 closed_at timestamp without time zone NOT NULL,
385 num_changes integer DEFAULT 0 NOT NULL
390 -- Name: changesets_id_seq; Type: SEQUENCE; Schema: public; Owner: -
393 CREATE SEQUENCE public.changesets_id_seq
402 -- Name: changesets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
405 ALTER SEQUENCE public.changesets_id_seq OWNED BY public.changesets.id;
409 -- Name: changesets_subscribers; Type: TABLE; Schema: public; Owner: -
412 CREATE TABLE public.changesets_subscribers (
413 subscriber_id bigint NOT NULL,
414 changeset_id bigint NOT NULL
419 -- Name: client_applications; Type: TABLE; Schema: public; Owner: -
422 CREATE TABLE public.client_applications (
424 name character varying,
425 url character varying,
426 support_url character varying,
427 callback_url character varying,
428 key character varying(50),
429 secret character varying(50),
431 created_at timestamp without time zone,
432 updated_at timestamp without time zone,
433 allow_read_prefs boolean DEFAULT false NOT NULL,
434 allow_write_prefs boolean DEFAULT false NOT NULL,
435 allow_write_diary boolean DEFAULT false NOT NULL,
436 allow_write_api boolean DEFAULT false NOT NULL,
437 allow_read_gpx boolean DEFAULT false NOT NULL,
438 allow_write_gpx boolean DEFAULT false NOT NULL,
439 allow_write_notes boolean DEFAULT false NOT NULL
444 -- Name: client_applications_id_seq; Type: SEQUENCE; Schema: public; Owner: -
447 CREATE SEQUENCE public.client_applications_id_seq
457 -- Name: client_applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
460 ALTER SEQUENCE public.client_applications_id_seq OWNED BY public.client_applications.id;
464 -- Name: current_node_tags; Type: TABLE; Schema: public; Owner: -
467 CREATE TABLE public.current_node_tags (
468 node_id bigint NOT NULL,
469 k character varying DEFAULT ''::character varying NOT NULL,
470 v character varying DEFAULT ''::character varying NOT NULL
475 -- Name: current_nodes; Type: TABLE; Schema: public; Owner: -
478 CREATE TABLE public.current_nodes (
480 latitude integer NOT NULL,
481 longitude integer NOT NULL,
482 changeset_id bigint NOT NULL,
483 visible boolean NOT NULL,
484 "timestamp" timestamp without time zone NOT NULL,
485 tile bigint NOT NULL,
486 version bigint NOT NULL
491 -- Name: current_nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
494 CREATE SEQUENCE public.current_nodes_id_seq
503 -- Name: current_nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
506 ALTER SEQUENCE public.current_nodes_id_seq OWNED BY public.current_nodes.id;
510 -- Name: current_relation_members; Type: TABLE; Schema: public; Owner: -
513 CREATE TABLE public.current_relation_members (
514 relation_id bigint NOT NULL,
515 member_type public.nwr_enum NOT NULL,
516 member_id bigint NOT NULL,
517 member_role character varying NOT NULL,
518 sequence_id integer DEFAULT 0 NOT NULL
523 -- Name: current_relation_tags; Type: TABLE; Schema: public; Owner: -
526 CREATE TABLE public.current_relation_tags (
527 relation_id bigint NOT NULL,
528 k character varying DEFAULT ''::character varying NOT NULL,
529 v character varying DEFAULT ''::character varying NOT NULL
534 -- Name: current_relations; Type: TABLE; Schema: public; Owner: -
537 CREATE TABLE public.current_relations (
539 changeset_id bigint NOT NULL,
540 "timestamp" timestamp without time zone NOT NULL,
541 visible boolean NOT NULL,
542 version bigint NOT NULL
547 -- Name: current_relations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
550 CREATE SEQUENCE public.current_relations_id_seq
559 -- Name: current_relations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
562 ALTER SEQUENCE public.current_relations_id_seq OWNED BY public.current_relations.id;
566 -- Name: current_way_nodes; Type: TABLE; Schema: public; Owner: -
569 CREATE TABLE public.current_way_nodes (
570 way_id bigint NOT NULL,
571 node_id bigint NOT NULL,
572 sequence_id bigint NOT NULL
577 -- Name: current_way_tags; Type: TABLE; Schema: public; Owner: -
580 CREATE TABLE public.current_way_tags (
581 way_id bigint NOT NULL,
582 k character varying DEFAULT ''::character varying NOT NULL,
583 v character varying DEFAULT ''::character varying NOT NULL
588 -- Name: current_ways; Type: TABLE; Schema: public; Owner: -
591 CREATE TABLE public.current_ways (
593 changeset_id bigint NOT NULL,
594 "timestamp" timestamp without time zone NOT NULL,
595 visible boolean NOT NULL,
596 version bigint NOT NULL
601 -- Name: current_ways_id_seq; Type: SEQUENCE; Schema: public; Owner: -
604 CREATE SEQUENCE public.current_ways_id_seq
613 -- Name: current_ways_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
616 ALTER SEQUENCE public.current_ways_id_seq OWNED BY public.current_ways.id;
620 -- Name: delayed_jobs; Type: TABLE; Schema: public; Owner: -
623 CREATE TABLE public.delayed_jobs (
625 priority integer DEFAULT 0 NOT NULL,
626 attempts integer DEFAULT 0 NOT NULL,
627 handler text NOT NULL,
629 run_at timestamp without time zone,
630 locked_at timestamp without time zone,
631 failed_at timestamp without time zone,
632 locked_by character varying,
633 queue character varying,
634 created_at timestamp without time zone,
635 updated_at timestamp without time zone
640 -- Name: delayed_jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
643 CREATE SEQUENCE public.delayed_jobs_id_seq
652 -- Name: delayed_jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
655 ALTER SEQUENCE public.delayed_jobs_id_seq OWNED BY public.delayed_jobs.id;
659 -- Name: diary_comments; Type: TABLE; Schema: public; Owner: -
662 CREATE TABLE public.diary_comments (
664 diary_entry_id bigint NOT NULL,
665 user_id bigint NOT NULL,
667 created_at timestamp without time zone NOT NULL,
668 updated_at timestamp without time zone NOT NULL,
669 visible boolean DEFAULT true NOT NULL,
670 body_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
675 -- Name: diary_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
678 CREATE SEQUENCE public.diary_comments_id_seq
687 -- Name: diary_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
690 ALTER SEQUENCE public.diary_comments_id_seq OWNED BY public.diary_comments.id;
694 -- Name: diary_entries; Type: TABLE; Schema: public; Owner: -
697 CREATE TABLE public.diary_entries (
699 user_id bigint NOT NULL,
700 title character varying NOT NULL,
702 created_at timestamp without time zone NOT NULL,
703 updated_at timestamp without time zone NOT NULL,
704 latitude double precision,
705 longitude double precision,
706 language_code character varying DEFAULT 'en'::character varying NOT NULL,
707 visible boolean DEFAULT true NOT NULL,
708 body_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
713 -- Name: diary_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
716 CREATE SEQUENCE public.diary_entries_id_seq
725 -- Name: diary_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
728 ALTER SEQUENCE public.diary_entries_id_seq OWNED BY public.diary_entries.id;
732 -- Name: diary_entry_subscriptions; Type: TABLE; Schema: public; Owner: -
735 CREATE TABLE public.diary_entry_subscriptions (
736 user_id bigint NOT NULL,
737 diary_entry_id bigint NOT NULL
742 -- Name: friends; Type: TABLE; Schema: public; Owner: -
745 CREATE TABLE public.friends (
747 user_id bigint NOT NULL,
748 friend_user_id bigint NOT NULL,
749 created_at timestamp without time zone
754 -- Name: friends_id_seq; Type: SEQUENCE; Schema: public; Owner: -
757 CREATE SEQUENCE public.friends_id_seq
766 -- Name: friends_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
769 ALTER SEQUENCE public.friends_id_seq OWNED BY public.friends.id;
773 -- Name: gps_points; Type: TABLE; Schema: public; Owner: -
776 CREATE TABLE public.gps_points (
777 altitude double precision,
778 trackid integer NOT NULL,
779 latitude integer NOT NULL,
780 longitude integer NOT NULL,
781 gpx_id bigint NOT NULL,
782 "timestamp" timestamp without time zone,
788 -- Name: gpx_file_tags; Type: TABLE; Schema: public; Owner: -
791 CREATE TABLE public.gpx_file_tags (
792 gpx_id bigint NOT NULL,
793 tag character varying NOT NULL,
799 -- Name: gpx_file_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: -
802 CREATE SEQUENCE public.gpx_file_tags_id_seq
811 -- Name: gpx_file_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
814 ALTER SEQUENCE public.gpx_file_tags_id_seq OWNED BY public.gpx_file_tags.id;
818 -- Name: gpx_files; Type: TABLE; Schema: public; Owner: -
821 CREATE TABLE public.gpx_files (
823 user_id bigint NOT NULL,
824 visible boolean DEFAULT true NOT NULL,
825 name character varying DEFAULT ''::character varying NOT NULL,
827 latitude double precision,
828 longitude double precision,
829 "timestamp" timestamp without time zone NOT NULL,
830 description character varying DEFAULT ''::character varying NOT NULL,
831 inserted boolean NOT NULL,
832 visibility public.gpx_visibility_enum DEFAULT 'public'::public.gpx_visibility_enum NOT NULL
837 -- Name: gpx_files_id_seq; Type: SEQUENCE; Schema: public; Owner: -
840 CREATE SEQUENCE public.gpx_files_id_seq
849 -- Name: gpx_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
852 ALTER SEQUENCE public.gpx_files_id_seq OWNED BY public.gpx_files.id;
856 -- Name: issue_comments; Type: TABLE; Schema: public; Owner: -
859 CREATE TABLE public.issue_comments (
861 issue_id integer NOT NULL,
862 user_id integer NOT NULL,
864 created_at timestamp without time zone NOT NULL,
865 updated_at timestamp without time zone NOT NULL
870 -- Name: issue_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
873 CREATE SEQUENCE public.issue_comments_id_seq
883 -- Name: issue_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
886 ALTER SEQUENCE public.issue_comments_id_seq OWNED BY public.issue_comments.id;
890 -- Name: issues; Type: TABLE; Schema: public; Owner: -
893 CREATE TABLE public.issues (
895 reportable_type character varying NOT NULL,
896 reportable_id integer NOT NULL,
897 reported_user_id integer,
898 status public.issue_status_enum DEFAULT 'open'::public.issue_status_enum NOT NULL,
899 assigned_role public.user_role_enum NOT NULL,
900 resolved_at timestamp without time zone,
903 reports_count integer DEFAULT 0,
904 created_at timestamp without time zone NOT NULL,
905 updated_at timestamp without time zone NOT NULL
910 -- Name: issues_id_seq; Type: SEQUENCE; Schema: public; Owner: -
913 CREATE SEQUENCE public.issues_id_seq
923 -- Name: issues_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
926 ALTER SEQUENCE public.issues_id_seq OWNED BY public.issues.id;
930 -- Name: languages; Type: TABLE; Schema: public; Owner: -
933 CREATE TABLE public.languages (
934 code character varying NOT NULL,
935 english_name character varying NOT NULL,
936 native_name character varying
941 -- Name: messages; Type: TABLE; Schema: public; Owner: -
944 CREATE TABLE public.messages (
946 from_user_id bigint NOT NULL,
947 title character varying NOT NULL,
949 sent_on timestamp without time zone NOT NULL,
950 message_read boolean DEFAULT false NOT NULL,
951 to_user_id bigint NOT NULL,
952 to_user_visible boolean DEFAULT true NOT NULL,
953 from_user_visible boolean DEFAULT true NOT NULL,
954 body_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL,
955 muted boolean DEFAULT false NOT NULL
960 -- Name: messages_id_seq; Type: SEQUENCE; Schema: public; Owner: -
963 CREATE SEQUENCE public.messages_id_seq
972 -- Name: messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
975 ALTER SEQUENCE public.messages_id_seq OWNED BY public.messages.id;
979 -- Name: node_tags; Type: TABLE; Schema: public; Owner: -
982 CREATE TABLE public.node_tags (
983 node_id bigint NOT NULL,
984 version bigint NOT NULL,
985 k character varying DEFAULT ''::character varying NOT NULL,
986 v character varying DEFAULT ''::character varying NOT NULL
991 -- Name: nodes; Type: TABLE; Schema: public; Owner: -
994 CREATE TABLE public.nodes (
995 node_id bigint NOT NULL,
996 latitude integer NOT NULL,
997 longitude integer NOT NULL,
998 changeset_id bigint NOT NULL,
999 visible boolean NOT NULL,
1000 "timestamp" timestamp without time zone NOT NULL,
1001 tile bigint NOT NULL,
1002 version bigint NOT NULL,
1003 redaction_id integer
1008 -- Name: note_comments; Type: TABLE; Schema: public; Owner: -
1011 CREATE TABLE public.note_comments (
1013 note_id bigint NOT NULL,
1014 visible boolean NOT NULL,
1015 created_at timestamp without time zone NOT NULL,
1019 event public.note_event_enum
1024 -- Name: note_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1027 CREATE SEQUENCE public.note_comments_id_seq
1036 -- Name: note_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1039 ALTER SEQUENCE public.note_comments_id_seq OWNED BY public.note_comments.id;
1043 -- Name: notes; Type: TABLE; Schema: public; Owner: -
1046 CREATE TABLE public.notes (
1048 latitude integer NOT NULL,
1049 longitude integer NOT NULL,
1050 tile bigint NOT NULL,
1051 updated_at timestamp without time zone NOT NULL,
1052 created_at timestamp without time zone NOT NULL,
1053 status public.note_status_enum NOT NULL,
1054 closed_at timestamp without time zone
1059 -- Name: notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1062 CREATE SEQUENCE public.notes_id_seq
1071 -- Name: notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1074 ALTER SEQUENCE public.notes_id_seq OWNED BY public.notes.id;
1078 -- Name: oauth_access_grants; Type: TABLE; Schema: public; Owner: -
1081 CREATE TABLE public.oauth_access_grants (
1083 resource_owner_id bigint NOT NULL,
1084 application_id bigint NOT NULL,
1085 token character varying NOT NULL,
1086 expires_in integer NOT NULL,
1087 redirect_uri text NOT NULL,
1088 created_at timestamp without time zone NOT NULL,
1089 revoked_at timestamp without time zone,
1090 scopes character varying DEFAULT ''::character varying NOT NULL,
1091 code_challenge character varying,
1092 code_challenge_method character varying
1097 -- Name: oauth_access_grants_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1100 CREATE SEQUENCE public.oauth_access_grants_id_seq
1109 -- Name: oauth_access_grants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1112 ALTER SEQUENCE public.oauth_access_grants_id_seq OWNED BY public.oauth_access_grants.id;
1116 -- Name: oauth_access_tokens; Type: TABLE; Schema: public; Owner: -
1119 CREATE TABLE public.oauth_access_tokens (
1121 resource_owner_id bigint,
1122 application_id bigint NOT NULL,
1123 token character varying NOT NULL,
1124 refresh_token character varying,
1126 revoked_at timestamp without time zone,
1127 created_at timestamp without time zone NOT NULL,
1128 scopes character varying,
1129 previous_refresh_token character varying DEFAULT ''::character varying NOT NULL
1134 -- Name: oauth_access_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1137 CREATE SEQUENCE public.oauth_access_tokens_id_seq
1146 -- Name: oauth_access_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1149 ALTER SEQUENCE public.oauth_access_tokens_id_seq OWNED BY public.oauth_access_tokens.id;
1153 -- Name: oauth_applications; Type: TABLE; Schema: public; Owner: -
1156 CREATE TABLE public.oauth_applications (
1158 owner_type character varying NOT NULL,
1159 owner_id bigint NOT NULL,
1160 name character varying NOT NULL,
1161 uid character varying NOT NULL,
1162 secret character varying NOT NULL,
1163 redirect_uri text NOT NULL,
1164 scopes character varying DEFAULT ''::character varying NOT NULL,
1165 confidential boolean DEFAULT true NOT NULL,
1166 created_at timestamp(6) without time zone NOT NULL,
1167 updated_at timestamp(6) without time zone NOT NULL
1172 -- Name: oauth_applications_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1175 CREATE SEQUENCE public.oauth_applications_id_seq
1184 -- Name: oauth_applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1187 ALTER SEQUENCE public.oauth_applications_id_seq OWNED BY public.oauth_applications.id;
1191 -- Name: oauth_nonces; Type: TABLE; Schema: public; Owner: -
1194 CREATE TABLE public.oauth_nonces (
1196 nonce character varying,
1197 "timestamp" integer,
1198 created_at timestamp without time zone,
1199 updated_at timestamp without time zone
1204 -- Name: oauth_nonces_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1207 CREATE SEQUENCE public.oauth_nonces_id_seq
1216 -- Name: oauth_nonces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1219 ALTER SEQUENCE public.oauth_nonces_id_seq OWNED BY public.oauth_nonces.id;
1223 -- Name: oauth_openid_requests; Type: TABLE; Schema: public; Owner: -
1226 CREATE TABLE public.oauth_openid_requests (
1228 access_grant_id bigint NOT NULL,
1229 nonce character varying NOT NULL
1234 -- Name: oauth_openid_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1237 CREATE SEQUENCE public.oauth_openid_requests_id_seq
1246 -- Name: oauth_openid_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1249 ALTER SEQUENCE public.oauth_openid_requests_id_seq OWNED BY public.oauth_openid_requests.id;
1253 -- Name: oauth_tokens; Type: TABLE; Schema: public; Owner: -
1256 CREATE TABLE public.oauth_tokens (
1257 id integer NOT NULL,
1259 type character varying(20),
1260 client_application_id integer,
1261 token character varying(50),
1262 secret character varying(50),
1263 authorized_at timestamp without time zone,
1264 invalidated_at timestamp without time zone,
1265 created_at timestamp without time zone,
1266 updated_at timestamp without time zone,
1267 allow_read_prefs boolean DEFAULT false NOT NULL,
1268 allow_write_prefs boolean DEFAULT false NOT NULL,
1269 allow_write_diary boolean DEFAULT false NOT NULL,
1270 allow_write_api boolean DEFAULT false NOT NULL,
1271 allow_read_gpx boolean DEFAULT false NOT NULL,
1272 allow_write_gpx boolean DEFAULT false NOT NULL,
1273 callback_url character varying,
1274 verifier character varying(20),
1275 scope character varying,
1276 valid_to timestamp without time zone,
1277 allow_write_notes boolean DEFAULT false NOT NULL
1282 -- Name: oauth_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1285 CREATE SEQUENCE public.oauth_tokens_id_seq
1295 -- Name: oauth_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1298 ALTER SEQUENCE public.oauth_tokens_id_seq OWNED BY public.oauth_tokens.id;
1302 -- Name: redactions; Type: TABLE; Schema: public; Owner: -
1305 CREATE TABLE public.redactions (
1306 id integer NOT NULL,
1307 title character varying,
1309 created_at timestamp without time zone,
1310 updated_at timestamp without time zone,
1311 user_id bigint NOT NULL,
1312 description_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
1317 -- Name: redactions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1320 CREATE SEQUENCE public.redactions_id_seq
1330 -- Name: redactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1333 ALTER SEQUENCE public.redactions_id_seq OWNED BY public.redactions.id;
1337 -- Name: relation_members; Type: TABLE; Schema: public; Owner: -
1340 CREATE TABLE public.relation_members (
1341 relation_id bigint NOT NULL,
1342 member_type public.nwr_enum NOT NULL,
1343 member_id bigint NOT NULL,
1344 member_role character varying NOT NULL,
1345 version bigint DEFAULT 0 NOT NULL,
1346 sequence_id integer DEFAULT 0 NOT NULL
1351 -- Name: relation_tags; Type: TABLE; Schema: public; Owner: -
1354 CREATE TABLE public.relation_tags (
1355 relation_id bigint NOT NULL,
1356 k character varying DEFAULT ''::character varying NOT NULL,
1357 v character varying DEFAULT ''::character varying NOT NULL,
1358 version bigint NOT NULL
1363 -- Name: relations; Type: TABLE; Schema: public; Owner: -
1366 CREATE TABLE public.relations (
1367 relation_id bigint NOT NULL,
1368 changeset_id bigint NOT NULL,
1369 "timestamp" timestamp without time zone NOT NULL,
1370 version bigint NOT NULL,
1371 visible boolean DEFAULT true NOT NULL,
1372 redaction_id integer
1377 -- Name: reports; Type: TABLE; Schema: public; Owner: -
1380 CREATE TABLE public.reports (
1381 id integer NOT NULL,
1382 issue_id integer NOT NULL,
1383 user_id integer NOT NULL,
1384 details text NOT NULL,
1385 category character varying NOT NULL,
1386 created_at timestamp without time zone NOT NULL,
1387 updated_at timestamp without time zone NOT NULL
1392 -- Name: reports_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1395 CREATE SEQUENCE public.reports_id_seq
1405 -- Name: reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1408 ALTER SEQUENCE public.reports_id_seq OWNED BY public.reports.id;
1412 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
1415 CREATE TABLE public.schema_migrations (
1416 version character varying NOT NULL
1421 -- Name: user_blocks; Type: TABLE; Schema: public; Owner: -
1424 CREATE TABLE public.user_blocks (
1425 id integer NOT NULL,
1426 user_id bigint NOT NULL,
1427 creator_id bigint NOT NULL,
1428 reason text NOT NULL,
1429 ends_at timestamp without time zone NOT NULL,
1430 needs_view boolean DEFAULT false NOT NULL,
1432 created_at timestamp without time zone,
1433 updated_at timestamp without time zone,
1434 reason_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
1439 -- Name: user_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1442 CREATE SEQUENCE public.user_blocks_id_seq
1452 -- Name: user_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1455 ALTER SEQUENCE public.user_blocks_id_seq OWNED BY public.user_blocks.id;
1459 -- Name: user_mutes; Type: TABLE; Schema: public; Owner: -
1462 CREATE TABLE public.user_mutes (
1464 owner_id bigint NOT NULL,
1465 subject_id bigint NOT NULL,
1466 created_at timestamp(6) without time zone NOT NULL,
1467 updated_at timestamp(6) without time zone NOT NULL
1472 -- Name: user_mutes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1475 CREATE SEQUENCE public.user_mutes_id_seq
1484 -- Name: user_mutes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1487 ALTER SEQUENCE public.user_mutes_id_seq OWNED BY public.user_mutes.id;
1491 -- Name: user_preferences; Type: TABLE; Schema: public; Owner: -
1494 CREATE TABLE public.user_preferences (
1495 user_id bigint NOT NULL,
1496 k character varying NOT NULL,
1497 v character varying NOT NULL
1502 -- Name: user_roles; Type: TABLE; Schema: public; Owner: -
1505 CREATE TABLE public.user_roles (
1506 id integer NOT NULL,
1507 user_id bigint NOT NULL,
1508 role public.user_role_enum NOT NULL,
1509 created_at timestamp without time zone,
1510 updated_at timestamp without time zone,
1511 granter_id bigint NOT NULL
1516 -- Name: user_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1519 CREATE SEQUENCE public.user_roles_id_seq
1529 -- Name: user_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1532 ALTER SEQUENCE public.user_roles_id_seq OWNED BY public.user_roles.id;
1536 -- Name: user_tokens; Type: TABLE; Schema: public; Owner: -
1539 CREATE TABLE public.user_tokens (
1541 user_id bigint NOT NULL,
1542 token character varying NOT NULL,
1543 expiry timestamp without time zone NOT NULL,
1549 -- Name: user_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1552 CREATE SEQUENCE public.user_tokens_id_seq
1561 -- Name: user_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1564 ALTER SEQUENCE public.user_tokens_id_seq OWNED BY public.user_tokens.id;
1568 -- Name: users; Type: TABLE; Schema: public; Owner: -
1571 CREATE TABLE public.users (
1572 email character varying NOT NULL,
1574 pass_crypt character varying NOT NULL,
1575 creation_time timestamp without time zone NOT NULL,
1576 display_name character varying DEFAULT ''::character varying NOT NULL,
1577 data_public boolean DEFAULT false NOT NULL,
1578 description text DEFAULT ''::text NOT NULL,
1579 home_lat double precision,
1580 home_lon double precision,
1581 home_zoom smallint DEFAULT 3,
1582 pass_salt character varying,
1583 email_valid boolean DEFAULT false NOT NULL,
1584 new_email character varying,
1585 creation_ip character varying,
1586 languages character varying,
1587 status public.user_status_enum DEFAULT 'pending'::public.user_status_enum NOT NULL,
1588 terms_agreed timestamp without time zone,
1589 consider_pd boolean DEFAULT false NOT NULL,
1590 auth_uid character varying,
1591 preferred_editor character varying,
1592 terms_seen boolean DEFAULT false NOT NULL,
1593 description_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL,
1594 changesets_count integer DEFAULT 0 NOT NULL,
1595 traces_count integer DEFAULT 0 NOT NULL,
1596 diary_entries_count integer DEFAULT 0 NOT NULL,
1597 image_use_gravatar boolean DEFAULT false NOT NULL,
1598 auth_provider character varying,
1600 tou_agreed timestamp without time zone
1605 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1608 CREATE SEQUENCE public.users_id_seq
1617 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1620 ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
1624 -- Name: way_nodes; Type: TABLE; Schema: public; Owner: -
1627 CREATE TABLE public.way_nodes (
1628 way_id bigint NOT NULL,
1629 node_id bigint NOT NULL,
1630 version bigint NOT NULL,
1631 sequence_id bigint NOT NULL
1636 -- Name: way_tags; Type: TABLE; Schema: public; Owner: -
1639 CREATE TABLE public.way_tags (
1640 way_id bigint NOT NULL,
1641 k character varying NOT NULL,
1642 v character varying NOT NULL,
1643 version bigint NOT NULL
1648 -- Name: ways; Type: TABLE; Schema: public; Owner: -
1651 CREATE TABLE public.ways (
1652 way_id bigint NOT NULL,
1653 changeset_id bigint NOT NULL,
1654 "timestamp" timestamp without time zone NOT NULL,
1655 version bigint NOT NULL,
1656 visible boolean DEFAULT true NOT NULL,
1657 redaction_id integer
1662 -- Name: acls id; Type: DEFAULT; Schema: public; Owner: -
1665 ALTER TABLE ONLY public.acls ALTER COLUMN id SET DEFAULT nextval('public.acls_id_seq'::regclass);
1669 -- Name: active_storage_attachments id; Type: DEFAULT; Schema: public; Owner: -
1672 ALTER TABLE ONLY public.active_storage_attachments ALTER COLUMN id SET DEFAULT nextval('public.active_storage_attachments_id_seq'::regclass);
1676 -- Name: active_storage_blobs id; Type: DEFAULT; Schema: public; Owner: -
1679 ALTER TABLE ONLY public.active_storage_blobs ALTER COLUMN id SET DEFAULT nextval('public.active_storage_blobs_id_seq'::regclass);
1683 -- Name: active_storage_variant_records id; Type: DEFAULT; Schema: public; Owner: -
1686 ALTER TABLE ONLY public.active_storage_variant_records ALTER COLUMN id SET DEFAULT nextval('public.active_storage_variant_records_id_seq'::regclass);
1690 -- Name: changeset_comments id; Type: DEFAULT; Schema: public; Owner: -
1693 ALTER TABLE ONLY public.changeset_comments ALTER COLUMN id SET DEFAULT nextval('public.changeset_comments_id_seq'::regclass);
1697 -- Name: changesets id; Type: DEFAULT; Schema: public; Owner: -
1700 ALTER TABLE ONLY public.changesets ALTER COLUMN id SET DEFAULT nextval('public.changesets_id_seq'::regclass);
1704 -- Name: client_applications id; Type: DEFAULT; Schema: public; Owner: -
1707 ALTER TABLE ONLY public.client_applications ALTER COLUMN id SET DEFAULT nextval('public.client_applications_id_seq'::regclass);
1711 -- Name: current_nodes id; Type: DEFAULT; Schema: public; Owner: -
1714 ALTER TABLE ONLY public.current_nodes ALTER COLUMN id SET DEFAULT nextval('public.current_nodes_id_seq'::regclass);
1718 -- Name: current_relations id; Type: DEFAULT; Schema: public; Owner: -
1721 ALTER TABLE ONLY public.current_relations ALTER COLUMN id SET DEFAULT nextval('public.current_relations_id_seq'::regclass);
1725 -- Name: current_ways id; Type: DEFAULT; Schema: public; Owner: -
1728 ALTER TABLE ONLY public.current_ways ALTER COLUMN id SET DEFAULT nextval('public.current_ways_id_seq'::regclass);
1732 -- Name: delayed_jobs id; Type: DEFAULT; Schema: public; Owner: -
1735 ALTER TABLE ONLY public.delayed_jobs ALTER COLUMN id SET DEFAULT nextval('public.delayed_jobs_id_seq'::regclass);
1739 -- Name: diary_comments id; Type: DEFAULT; Schema: public; Owner: -
1742 ALTER TABLE ONLY public.diary_comments ALTER COLUMN id SET DEFAULT nextval('public.diary_comments_id_seq'::regclass);
1746 -- Name: diary_entries id; Type: DEFAULT; Schema: public; Owner: -
1749 ALTER TABLE ONLY public.diary_entries ALTER COLUMN id SET DEFAULT nextval('public.diary_entries_id_seq'::regclass);
1753 -- Name: friends id; Type: DEFAULT; Schema: public; Owner: -
1756 ALTER TABLE ONLY public.friends ALTER COLUMN id SET DEFAULT nextval('public.friends_id_seq'::regclass);
1760 -- Name: gpx_file_tags id; Type: DEFAULT; Schema: public; Owner: -
1763 ALTER TABLE ONLY public.gpx_file_tags ALTER COLUMN id SET DEFAULT nextval('public.gpx_file_tags_id_seq'::regclass);
1767 -- Name: gpx_files id; Type: DEFAULT; Schema: public; Owner: -
1770 ALTER TABLE ONLY public.gpx_files ALTER COLUMN id SET DEFAULT nextval('public.gpx_files_id_seq'::regclass);
1774 -- Name: issue_comments id; Type: DEFAULT; Schema: public; Owner: -
1777 ALTER TABLE ONLY public.issue_comments ALTER COLUMN id SET DEFAULT nextval('public.issue_comments_id_seq'::regclass);
1781 -- Name: issues id; Type: DEFAULT; Schema: public; Owner: -
1784 ALTER TABLE ONLY public.issues ALTER COLUMN id SET DEFAULT nextval('public.issues_id_seq'::regclass);
1788 -- Name: messages id; Type: DEFAULT; Schema: public; Owner: -
1791 ALTER TABLE ONLY public.messages ALTER COLUMN id SET DEFAULT nextval('public.messages_id_seq'::regclass);
1795 -- Name: note_comments id; Type: DEFAULT; Schema: public; Owner: -
1798 ALTER TABLE ONLY public.note_comments ALTER COLUMN id SET DEFAULT nextval('public.note_comments_id_seq'::regclass);
1802 -- Name: notes id; Type: DEFAULT; Schema: public; Owner: -
1805 ALTER TABLE ONLY public.notes ALTER COLUMN id SET DEFAULT nextval('public.notes_id_seq'::regclass);
1809 -- Name: oauth_access_grants id; Type: DEFAULT; Schema: public; Owner: -
1812 ALTER TABLE ONLY public.oauth_access_grants ALTER COLUMN id SET DEFAULT nextval('public.oauth_access_grants_id_seq'::regclass);
1816 -- Name: oauth_access_tokens id; Type: DEFAULT; Schema: public; Owner: -
1819 ALTER TABLE ONLY public.oauth_access_tokens ALTER COLUMN id SET DEFAULT nextval('public.oauth_access_tokens_id_seq'::regclass);
1823 -- Name: oauth_applications id; Type: DEFAULT; Schema: public; Owner: -
1826 ALTER TABLE ONLY public.oauth_applications ALTER COLUMN id SET DEFAULT nextval('public.oauth_applications_id_seq'::regclass);
1830 -- Name: oauth_nonces id; Type: DEFAULT; Schema: public; Owner: -
1833 ALTER TABLE ONLY public.oauth_nonces ALTER COLUMN id SET DEFAULT nextval('public.oauth_nonces_id_seq'::regclass);
1837 -- Name: oauth_openid_requests id; Type: DEFAULT; Schema: public; Owner: -
1840 ALTER TABLE ONLY public.oauth_openid_requests ALTER COLUMN id SET DEFAULT nextval('public.oauth_openid_requests_id_seq'::regclass);
1844 -- Name: oauth_tokens id; Type: DEFAULT; Schema: public; Owner: -
1847 ALTER TABLE ONLY public.oauth_tokens ALTER COLUMN id SET DEFAULT nextval('public.oauth_tokens_id_seq'::regclass);
1851 -- Name: redactions id; Type: DEFAULT; Schema: public; Owner: -
1854 ALTER TABLE ONLY public.redactions ALTER COLUMN id SET DEFAULT nextval('public.redactions_id_seq'::regclass);
1858 -- Name: reports id; Type: DEFAULT; Schema: public; Owner: -
1861 ALTER TABLE ONLY public.reports ALTER COLUMN id SET DEFAULT nextval('public.reports_id_seq'::regclass);
1865 -- Name: user_blocks id; Type: DEFAULT; Schema: public; Owner: -
1868 ALTER TABLE ONLY public.user_blocks ALTER COLUMN id SET DEFAULT nextval('public.user_blocks_id_seq'::regclass);
1872 -- Name: user_mutes id; Type: DEFAULT; Schema: public; Owner: -
1875 ALTER TABLE ONLY public.user_mutes ALTER COLUMN id SET DEFAULT nextval('public.user_mutes_id_seq'::regclass);
1879 -- Name: user_roles id; Type: DEFAULT; Schema: public; Owner: -
1882 ALTER TABLE ONLY public.user_roles ALTER COLUMN id SET DEFAULT nextval('public.user_roles_id_seq'::regclass);
1886 -- Name: user_tokens id; Type: DEFAULT; Schema: public; Owner: -
1889 ALTER TABLE ONLY public.user_tokens ALTER COLUMN id SET DEFAULT nextval('public.user_tokens_id_seq'::regclass);
1893 -- Name: users id; Type: DEFAULT; Schema: public; Owner: -
1896 ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
1900 -- Name: acls acls_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1903 ALTER TABLE ONLY public.acls
1904 ADD CONSTRAINT acls_pkey PRIMARY KEY (id);
1908 -- Name: active_storage_attachments active_storage_attachments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1911 ALTER TABLE ONLY public.active_storage_attachments
1912 ADD CONSTRAINT active_storage_attachments_pkey PRIMARY KEY (id);
1916 -- Name: active_storage_blobs active_storage_blobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1919 ALTER TABLE ONLY public.active_storage_blobs
1920 ADD CONSTRAINT active_storage_blobs_pkey PRIMARY KEY (id);
1924 -- Name: active_storage_variant_records active_storage_variant_records_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1927 ALTER TABLE ONLY public.active_storage_variant_records
1928 ADD CONSTRAINT active_storage_variant_records_pkey PRIMARY KEY (id);
1932 -- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1935 ALTER TABLE ONLY public.ar_internal_metadata
1936 ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key);
1940 -- Name: changeset_comments changeset_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1943 ALTER TABLE ONLY public.changeset_comments
1944 ADD CONSTRAINT changeset_comments_pkey PRIMARY KEY (id);
1948 -- Name: changeset_tags changeset_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1951 ALTER TABLE ONLY public.changeset_tags
1952 ADD CONSTRAINT changeset_tags_pkey PRIMARY KEY (changeset_id, k);
1956 -- Name: changesets changesets_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1959 ALTER TABLE ONLY public.changesets
1960 ADD CONSTRAINT changesets_pkey PRIMARY KEY (id);
1964 -- Name: client_applications client_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1967 ALTER TABLE ONLY public.client_applications
1968 ADD CONSTRAINT client_applications_pkey PRIMARY KEY (id);
1972 -- Name: current_node_tags current_node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1975 ALTER TABLE ONLY public.current_node_tags
1976 ADD CONSTRAINT current_node_tags_pkey PRIMARY KEY (node_id, k);
1980 -- Name: current_nodes current_nodes_pkey1; Type: CONSTRAINT; Schema: public; Owner: -
1983 ALTER TABLE ONLY public.current_nodes
1984 ADD CONSTRAINT current_nodes_pkey1 PRIMARY KEY (id);
1988 -- Name: current_relation_members current_relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1991 ALTER TABLE ONLY public.current_relation_members
1992 ADD CONSTRAINT current_relation_members_pkey PRIMARY KEY (relation_id, sequence_id);
1996 -- Name: current_relation_tags current_relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1999 ALTER TABLE ONLY public.current_relation_tags
2000 ADD CONSTRAINT current_relation_tags_pkey PRIMARY KEY (relation_id, k);
2004 -- Name: current_relations current_relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2007 ALTER TABLE ONLY public.current_relations
2008 ADD CONSTRAINT current_relations_pkey PRIMARY KEY (id);
2012 -- Name: current_way_nodes current_way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2015 ALTER TABLE ONLY public.current_way_nodes
2016 ADD CONSTRAINT current_way_nodes_pkey PRIMARY KEY (way_id, sequence_id);
2020 -- Name: current_way_tags current_way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2023 ALTER TABLE ONLY public.current_way_tags
2024 ADD CONSTRAINT current_way_tags_pkey PRIMARY KEY (way_id, k);
2028 -- Name: current_ways current_ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2031 ALTER TABLE ONLY public.current_ways
2032 ADD CONSTRAINT current_ways_pkey PRIMARY KEY (id);
2036 -- Name: delayed_jobs delayed_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2039 ALTER TABLE ONLY public.delayed_jobs
2040 ADD CONSTRAINT delayed_jobs_pkey PRIMARY KEY (id);
2044 -- Name: diary_comments diary_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2047 ALTER TABLE ONLY public.diary_comments
2048 ADD CONSTRAINT diary_comments_pkey PRIMARY KEY (id);
2052 -- Name: diary_entries diary_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2055 ALTER TABLE ONLY public.diary_entries
2056 ADD CONSTRAINT diary_entries_pkey PRIMARY KEY (id);
2060 -- Name: diary_entry_subscriptions diary_entry_subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2063 ALTER TABLE ONLY public.diary_entry_subscriptions
2064 ADD CONSTRAINT diary_entry_subscriptions_pkey PRIMARY KEY (user_id, diary_entry_id);
2068 -- Name: friends friends_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2071 ALTER TABLE ONLY public.friends
2072 ADD CONSTRAINT friends_pkey PRIMARY KEY (id);
2076 -- Name: gpx_file_tags gpx_file_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2079 ALTER TABLE ONLY public.gpx_file_tags
2080 ADD CONSTRAINT gpx_file_tags_pkey PRIMARY KEY (id);
2084 -- Name: gpx_files gpx_files_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2087 ALTER TABLE ONLY public.gpx_files
2088 ADD CONSTRAINT gpx_files_pkey PRIMARY KEY (id);
2092 -- Name: issue_comments issue_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2095 ALTER TABLE ONLY public.issue_comments
2096 ADD CONSTRAINT issue_comments_pkey PRIMARY KEY (id);
2100 -- Name: issues issues_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2103 ALTER TABLE ONLY public.issues
2104 ADD CONSTRAINT issues_pkey PRIMARY KEY (id);
2108 -- Name: languages languages_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2111 ALTER TABLE ONLY public.languages
2112 ADD CONSTRAINT languages_pkey PRIMARY KEY (code);
2116 -- Name: messages messages_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2119 ALTER TABLE ONLY public.messages
2120 ADD CONSTRAINT messages_pkey PRIMARY KEY (id);
2124 -- Name: node_tags node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2127 ALTER TABLE ONLY public.node_tags
2128 ADD CONSTRAINT node_tags_pkey PRIMARY KEY (node_id, version, k);
2132 -- Name: nodes nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2135 ALTER TABLE ONLY public.nodes
2136 ADD CONSTRAINT nodes_pkey PRIMARY KEY (node_id, version);
2140 -- Name: note_comments note_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2143 ALTER TABLE ONLY public.note_comments
2144 ADD CONSTRAINT note_comments_pkey PRIMARY KEY (id);
2148 -- Name: notes notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2151 ALTER TABLE ONLY public.notes
2152 ADD CONSTRAINT notes_pkey PRIMARY KEY (id);
2156 -- Name: oauth_access_grants oauth_access_grants_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2159 ALTER TABLE ONLY public.oauth_access_grants
2160 ADD CONSTRAINT oauth_access_grants_pkey PRIMARY KEY (id);
2164 -- Name: oauth_access_tokens oauth_access_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2167 ALTER TABLE ONLY public.oauth_access_tokens
2168 ADD CONSTRAINT oauth_access_tokens_pkey PRIMARY KEY (id);
2172 -- Name: oauth_applications oauth_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2175 ALTER TABLE ONLY public.oauth_applications
2176 ADD CONSTRAINT oauth_applications_pkey PRIMARY KEY (id);
2180 -- Name: oauth_nonces oauth_nonces_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2183 ALTER TABLE ONLY public.oauth_nonces
2184 ADD CONSTRAINT oauth_nonces_pkey PRIMARY KEY (id);
2188 -- Name: oauth_openid_requests oauth_openid_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2191 ALTER TABLE ONLY public.oauth_openid_requests
2192 ADD CONSTRAINT oauth_openid_requests_pkey PRIMARY KEY (id);
2196 -- Name: oauth_tokens oauth_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2199 ALTER TABLE ONLY public.oauth_tokens
2200 ADD CONSTRAINT oauth_tokens_pkey PRIMARY KEY (id);
2204 -- Name: redactions redactions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2207 ALTER TABLE ONLY public.redactions
2208 ADD CONSTRAINT redactions_pkey PRIMARY KEY (id);
2212 -- Name: relation_members relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2215 ALTER TABLE ONLY public.relation_members
2216 ADD CONSTRAINT relation_members_pkey PRIMARY KEY (relation_id, version, sequence_id);
2220 -- Name: relation_tags relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2223 ALTER TABLE ONLY public.relation_tags
2224 ADD CONSTRAINT relation_tags_pkey PRIMARY KEY (relation_id, version, k);
2228 -- Name: relations relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2231 ALTER TABLE ONLY public.relations
2232 ADD CONSTRAINT relations_pkey PRIMARY KEY (relation_id, version);
2236 -- Name: reports reports_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2239 ALTER TABLE ONLY public.reports
2240 ADD CONSTRAINT reports_pkey PRIMARY KEY (id);
2244 -- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2247 ALTER TABLE ONLY public.schema_migrations
2248 ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version);
2252 -- Name: user_blocks user_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2255 ALTER TABLE ONLY public.user_blocks
2256 ADD CONSTRAINT user_blocks_pkey PRIMARY KEY (id);
2260 -- Name: user_mutes user_mutes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2263 ALTER TABLE ONLY public.user_mutes
2264 ADD CONSTRAINT user_mutes_pkey PRIMARY KEY (id);
2268 -- Name: user_preferences user_preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2271 ALTER TABLE ONLY public.user_preferences
2272 ADD CONSTRAINT user_preferences_pkey PRIMARY KEY (user_id, k);
2276 -- Name: user_roles user_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2279 ALTER TABLE ONLY public.user_roles
2280 ADD CONSTRAINT user_roles_pkey PRIMARY KEY (id);
2284 -- Name: user_tokens user_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2287 ALTER TABLE ONLY public.user_tokens
2288 ADD CONSTRAINT user_tokens_pkey PRIMARY KEY (id);
2292 -- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2295 ALTER TABLE ONLY public.users
2296 ADD CONSTRAINT users_pkey PRIMARY KEY (id);
2300 -- Name: way_nodes way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2303 ALTER TABLE ONLY public.way_nodes
2304 ADD CONSTRAINT way_nodes_pkey PRIMARY KEY (way_id, version, sequence_id);
2308 -- Name: way_tags way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2311 ALTER TABLE ONLY public.way_tags
2312 ADD CONSTRAINT way_tags_pkey PRIMARY KEY (way_id, version, k);
2316 -- Name: ways ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2319 ALTER TABLE ONLY public.ways
2320 ADD CONSTRAINT ways_pkey PRIMARY KEY (way_id, version);
2324 -- Name: acls_k_idx; Type: INDEX; Schema: public; Owner: -
2327 CREATE INDEX acls_k_idx ON public.acls USING btree (k);
2331 -- Name: changesets_bbox_idx; Type: INDEX; Schema: public; Owner: -
2334 CREATE INDEX changesets_bbox_idx ON public.changesets USING gist (min_lat, max_lat, min_lon, max_lon);
2338 -- Name: changesets_closed_at_idx; Type: INDEX; Schema: public; Owner: -
2341 CREATE INDEX changesets_closed_at_idx ON public.changesets USING btree (closed_at);
2345 -- Name: changesets_created_at_idx; Type: INDEX; Schema: public; Owner: -
2348 CREATE INDEX changesets_created_at_idx ON public.changesets USING btree (created_at);
2352 -- Name: changesets_user_id_created_at_idx; Type: INDEX; Schema: public; Owner: -
2355 CREATE INDEX changesets_user_id_created_at_idx ON public.changesets USING btree (user_id, created_at);
2359 -- Name: changesets_user_id_id_idx; Type: INDEX; Schema: public; Owner: -
2362 CREATE INDEX changesets_user_id_id_idx ON public.changesets USING btree (user_id, id);
2366 -- Name: current_nodes_tile_idx; Type: INDEX; Schema: public; Owner: -
2369 CREATE INDEX current_nodes_tile_idx ON public.current_nodes USING btree (tile);
2373 -- Name: current_nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2376 CREATE INDEX current_nodes_timestamp_idx ON public.current_nodes USING btree ("timestamp");
2380 -- Name: current_relation_members_member_idx; Type: INDEX; Schema: public; Owner: -
2383 CREATE INDEX current_relation_members_member_idx ON public.current_relation_members USING btree (member_type, member_id);
2387 -- Name: current_relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2390 CREATE INDEX current_relations_timestamp_idx ON public.current_relations USING btree ("timestamp");
2394 -- Name: current_way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -
2397 CREATE INDEX current_way_nodes_node_idx ON public.current_way_nodes USING btree (node_id);
2401 -- Name: current_ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2404 CREATE INDEX current_ways_timestamp_idx ON public.current_ways USING btree ("timestamp");
2408 -- Name: delayed_jobs_priority; Type: INDEX; Schema: public; Owner: -
2411 CREATE INDEX delayed_jobs_priority ON public.delayed_jobs USING btree (priority, run_at);
2415 -- Name: diary_comment_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -
2418 CREATE INDEX diary_comment_user_id_created_at_index ON public.diary_comments USING btree (user_id, created_at);
2422 -- Name: diary_comments_entry_id_idx; Type: INDEX; Schema: public; Owner: -
2425 CREATE UNIQUE INDEX diary_comments_entry_id_idx ON public.diary_comments USING btree (diary_entry_id, id);
2429 -- Name: diary_entry_created_at_index; Type: INDEX; Schema: public; Owner: -
2432 CREATE INDEX diary_entry_created_at_index ON public.diary_entries USING btree (created_at);
2436 -- Name: diary_entry_language_code_created_at_index; Type: INDEX; Schema: public; Owner: -
2439 CREATE INDEX diary_entry_language_code_created_at_index ON public.diary_entries USING btree (language_code, created_at);
2443 -- Name: diary_entry_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -
2446 CREATE INDEX diary_entry_user_id_created_at_index ON public.diary_entries USING btree (user_id, created_at);
2450 -- Name: gpx_file_tags_gpxid_idx; Type: INDEX; Schema: public; Owner: -
2453 CREATE INDEX gpx_file_tags_gpxid_idx ON public.gpx_file_tags USING btree (gpx_id);
2457 -- Name: gpx_file_tags_tag_idx; Type: INDEX; Schema: public; Owner: -
2460 CREATE INDEX gpx_file_tags_tag_idx ON public.gpx_file_tags USING btree (tag);
2464 -- Name: gpx_files_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2467 CREATE INDEX gpx_files_timestamp_idx ON public.gpx_files USING btree ("timestamp");
2471 -- Name: gpx_files_user_id_idx; Type: INDEX; Schema: public; Owner: -
2474 CREATE INDEX gpx_files_user_id_idx ON public.gpx_files USING btree (user_id);
2478 -- Name: gpx_files_visible_visibility_idx; Type: INDEX; Schema: public; Owner: -
2481 CREATE INDEX gpx_files_visible_visibility_idx ON public.gpx_files USING btree (visible, visibility);
2485 -- Name: index_acls_on_address; Type: INDEX; Schema: public; Owner: -
2488 CREATE INDEX index_acls_on_address ON public.acls USING gist (address inet_ops);
2492 -- Name: index_acls_on_domain; Type: INDEX; Schema: public; Owner: -
2495 CREATE INDEX index_acls_on_domain ON public.acls USING btree (domain);
2499 -- Name: index_acls_on_mx; Type: INDEX; Schema: public; Owner: -
2502 CREATE INDEX index_acls_on_mx ON public.acls USING btree (mx);
2506 -- Name: index_active_storage_attachments_on_blob_id; Type: INDEX; Schema: public; Owner: -
2509 CREATE INDEX index_active_storage_attachments_on_blob_id ON public.active_storage_attachments USING btree (blob_id);
2513 -- Name: index_active_storage_attachments_uniqueness; Type: INDEX; Schema: public; Owner: -
2516 CREATE UNIQUE INDEX index_active_storage_attachments_uniqueness ON public.active_storage_attachments USING btree (record_type, record_id, name, blob_id);
2520 -- Name: index_active_storage_blobs_on_key; Type: INDEX; Schema: public; Owner: -
2523 CREATE UNIQUE INDEX index_active_storage_blobs_on_key ON public.active_storage_blobs USING btree (key);
2527 -- Name: index_active_storage_variant_records_uniqueness; Type: INDEX; Schema: public; Owner: -
2530 CREATE UNIQUE INDEX index_active_storage_variant_records_uniqueness ON public.active_storage_variant_records USING btree (blob_id, variation_digest);
2534 -- Name: index_changeset_comments_on_author_id_and_created_at; Type: INDEX; Schema: public; Owner: -
2537 CREATE INDEX index_changeset_comments_on_author_id_and_created_at ON public.changeset_comments USING btree (author_id, created_at);
2541 -- Name: index_changeset_comments_on_changeset_id_and_created_at; Type: INDEX; Schema: public; Owner: -
2544 CREATE INDEX index_changeset_comments_on_changeset_id_and_created_at ON public.changeset_comments USING btree (changeset_id, created_at);
2548 -- Name: index_changeset_comments_on_created_at; Type: INDEX; Schema: public; Owner: -
2551 CREATE INDEX index_changeset_comments_on_created_at ON public.changeset_comments USING btree (created_at);
2555 -- Name: index_changesets_on_user_id_and_closed_at; Type: INDEX; Schema: public; Owner: -
2558 CREATE INDEX index_changesets_on_user_id_and_closed_at ON public.changesets USING btree (user_id, closed_at);
2562 -- Name: index_changesets_subscribers_on_changeset_id; Type: INDEX; Schema: public; Owner: -
2565 CREATE INDEX index_changesets_subscribers_on_changeset_id ON public.changesets_subscribers USING btree (changeset_id);
2569 -- Name: index_changesets_subscribers_on_subscriber_id_and_changeset_id; Type: INDEX; Schema: public; Owner: -
2572 CREATE UNIQUE INDEX index_changesets_subscribers_on_subscriber_id_and_changeset_id ON public.changesets_subscribers USING btree (subscriber_id, changeset_id);
2576 -- Name: index_client_applications_on_key; Type: INDEX; Schema: public; Owner: -
2579 CREATE UNIQUE INDEX index_client_applications_on_key ON public.client_applications USING btree (key);
2583 -- Name: index_client_applications_on_user_id; Type: INDEX; Schema: public; Owner: -
2586 CREATE INDEX index_client_applications_on_user_id ON public.client_applications USING btree (user_id);
2590 -- Name: index_diary_entry_subscriptions_on_diary_entry_id; Type: INDEX; Schema: public; Owner: -
2593 CREATE INDEX index_diary_entry_subscriptions_on_diary_entry_id ON public.diary_entry_subscriptions USING btree (diary_entry_id);
2597 -- Name: index_friends_on_user_id_and_created_at; Type: INDEX; Schema: public; Owner: -
2600 CREATE INDEX index_friends_on_user_id_and_created_at ON public.friends USING btree (user_id, created_at);
2604 -- Name: index_issue_comments_on_issue_id; Type: INDEX; Schema: public; Owner: -
2607 CREATE INDEX index_issue_comments_on_issue_id ON public.issue_comments USING btree (issue_id);
2611 -- Name: index_issue_comments_on_user_id; Type: INDEX; Schema: public; Owner: -
2614 CREATE INDEX index_issue_comments_on_user_id ON public.issue_comments USING btree (user_id);
2618 -- Name: index_issues_on_assigned_role; Type: INDEX; Schema: public; Owner: -
2621 CREATE INDEX index_issues_on_assigned_role ON public.issues USING btree (assigned_role);
2625 -- Name: index_issues_on_reportable_type_and_reportable_id; Type: INDEX; Schema: public; Owner: -
2628 CREATE INDEX index_issues_on_reportable_type_and_reportable_id ON public.issues USING btree (reportable_type, reportable_id);
2632 -- Name: index_issues_on_reported_user_id; Type: INDEX; Schema: public; Owner: -
2635 CREATE INDEX index_issues_on_reported_user_id ON public.issues USING btree (reported_user_id);
2639 -- Name: index_issues_on_status; Type: INDEX; Schema: public; Owner: -
2642 CREATE INDEX index_issues_on_status ON public.issues USING btree (status);
2646 -- Name: index_issues_on_updated_by; Type: INDEX; Schema: public; Owner: -
2649 CREATE INDEX index_issues_on_updated_by ON public.issues USING btree (updated_by);
2653 -- Name: index_note_comments_on_author_id_and_created_at; Type: INDEX; Schema: public; Owner: -
2656 CREATE INDEX index_note_comments_on_author_id_and_created_at ON public.note_comments USING btree (author_id, created_at);
2660 -- Name: index_note_comments_on_body; Type: INDEX; Schema: public; Owner: -
2663 CREATE INDEX index_note_comments_on_body ON public.note_comments USING gin (to_tsvector('english'::regconfig, body));
2667 -- Name: index_note_comments_on_created_at; Type: INDEX; Schema: public; Owner: -
2670 CREATE INDEX index_note_comments_on_created_at ON public.note_comments USING btree (created_at);
2674 -- Name: index_oauth_access_grants_on_application_id; Type: INDEX; Schema: public; Owner: -
2677 CREATE INDEX index_oauth_access_grants_on_application_id ON public.oauth_access_grants USING btree (application_id);
2681 -- Name: index_oauth_access_grants_on_resource_owner_id; Type: INDEX; Schema: public; Owner: -
2684 CREATE INDEX index_oauth_access_grants_on_resource_owner_id ON public.oauth_access_grants USING btree (resource_owner_id);
2688 -- Name: index_oauth_access_grants_on_token; Type: INDEX; Schema: public; Owner: -
2691 CREATE UNIQUE INDEX index_oauth_access_grants_on_token ON public.oauth_access_grants USING btree (token);
2695 -- Name: index_oauth_access_tokens_on_application_id; Type: INDEX; Schema: public; Owner: -
2698 CREATE INDEX index_oauth_access_tokens_on_application_id ON public.oauth_access_tokens USING btree (application_id);
2702 -- Name: index_oauth_access_tokens_on_refresh_token; Type: INDEX; Schema: public; Owner: -
2705 CREATE UNIQUE INDEX index_oauth_access_tokens_on_refresh_token ON public.oauth_access_tokens USING btree (refresh_token);
2709 -- Name: index_oauth_access_tokens_on_resource_owner_id; Type: INDEX; Schema: public; Owner: -
2712 CREATE INDEX index_oauth_access_tokens_on_resource_owner_id ON public.oauth_access_tokens USING btree (resource_owner_id);
2716 -- Name: index_oauth_access_tokens_on_token; Type: INDEX; Schema: public; Owner: -
2719 CREATE UNIQUE INDEX index_oauth_access_tokens_on_token ON public.oauth_access_tokens USING btree (token);
2723 -- Name: index_oauth_applications_on_owner_type_and_owner_id; Type: INDEX; Schema: public; Owner: -
2726 CREATE INDEX index_oauth_applications_on_owner_type_and_owner_id ON public.oauth_applications USING btree (owner_type, owner_id);
2730 -- Name: index_oauth_applications_on_uid; Type: INDEX; Schema: public; Owner: -
2733 CREATE UNIQUE INDEX index_oauth_applications_on_uid ON public.oauth_applications USING btree (uid);
2737 -- Name: index_oauth_nonces_on_nonce_and_timestamp; Type: INDEX; Schema: public; Owner: -
2740 CREATE UNIQUE INDEX index_oauth_nonces_on_nonce_and_timestamp ON public.oauth_nonces USING btree (nonce, "timestamp");
2744 -- Name: index_oauth_openid_requests_on_access_grant_id; Type: INDEX; Schema: public; Owner: -
2747 CREATE INDEX index_oauth_openid_requests_on_access_grant_id ON public.oauth_openid_requests USING btree (access_grant_id);
2751 -- Name: index_oauth_tokens_on_token; Type: INDEX; Schema: public; Owner: -
2754 CREATE UNIQUE INDEX index_oauth_tokens_on_token ON public.oauth_tokens USING btree (token);
2758 -- Name: index_oauth_tokens_on_user_id; Type: INDEX; Schema: public; Owner: -
2761 CREATE INDEX index_oauth_tokens_on_user_id ON public.oauth_tokens USING btree (user_id);
2765 -- Name: index_reports_on_issue_id; Type: INDEX; Schema: public; Owner: -
2768 CREATE INDEX index_reports_on_issue_id ON public.reports USING btree (issue_id);
2772 -- Name: index_reports_on_user_id; Type: INDEX; Schema: public; Owner: -
2775 CREATE INDEX index_reports_on_user_id ON public.reports USING btree (user_id);
2779 -- Name: index_user_blocks_on_user_id; Type: INDEX; Schema: public; Owner: -
2782 CREATE INDEX index_user_blocks_on_user_id ON public.user_blocks USING btree (user_id);
2786 -- Name: index_user_mutes_on_owner_id_and_subject_id; Type: INDEX; Schema: public; Owner: -
2789 CREATE UNIQUE INDEX index_user_mutes_on_owner_id_and_subject_id ON public.user_mutes USING btree (owner_id, subject_id);
2793 -- Name: messages_from_user_id_idx; Type: INDEX; Schema: public; Owner: -
2796 CREATE INDEX messages_from_user_id_idx ON public.messages USING btree (from_user_id);
2800 -- Name: messages_to_user_id_idx; Type: INDEX; Schema: public; Owner: -
2803 CREATE INDEX messages_to_user_id_idx ON public.messages USING btree (to_user_id);
2807 -- Name: nodes_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
2810 CREATE INDEX nodes_changeset_id_idx ON public.nodes USING btree (changeset_id);
2814 -- Name: nodes_tile_idx; Type: INDEX; Schema: public; Owner: -
2817 CREATE INDEX nodes_tile_idx ON public.nodes USING btree (tile);
2821 -- Name: nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2824 CREATE INDEX nodes_timestamp_idx ON public.nodes USING btree ("timestamp");
2828 -- Name: note_comments_note_id_idx; Type: INDEX; Schema: public; Owner: -
2831 CREATE INDEX note_comments_note_id_idx ON public.note_comments USING btree (note_id);
2835 -- Name: notes_created_at_idx; Type: INDEX; Schema: public; Owner: -
2838 CREATE INDEX notes_created_at_idx ON public.notes USING btree (created_at);
2842 -- Name: notes_tile_status_idx; Type: INDEX; Schema: public; Owner: -
2845 CREATE INDEX notes_tile_status_idx ON public.notes USING btree (tile, status);
2849 -- Name: notes_updated_at_idx; Type: INDEX; Schema: public; Owner: -
2852 CREATE INDEX notes_updated_at_idx ON public.notes USING btree (updated_at);
2856 -- Name: points_gpxid_idx; Type: INDEX; Schema: public; Owner: -
2859 CREATE INDEX points_gpxid_idx ON public.gps_points USING btree (gpx_id);
2863 -- Name: points_tile_idx; Type: INDEX; Schema: public; Owner: -
2866 CREATE INDEX points_tile_idx ON public.gps_points USING btree (tile);
2870 -- Name: relation_members_member_idx; Type: INDEX; Schema: public; Owner: -
2873 CREATE INDEX relation_members_member_idx ON public.relation_members USING btree (member_type, member_id);
2877 -- Name: relations_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
2880 CREATE INDEX relations_changeset_id_idx ON public.relations USING btree (changeset_id);
2884 -- Name: relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2887 CREATE INDEX relations_timestamp_idx ON public.relations USING btree ("timestamp");
2891 -- Name: user_id_idx; Type: INDEX; Schema: public; Owner: -
2894 CREATE INDEX user_id_idx ON public.friends USING btree (friend_user_id);
2898 -- Name: user_roles_id_role_unique; Type: INDEX; Schema: public; Owner: -
2901 CREATE UNIQUE INDEX user_roles_id_role_unique ON public.user_roles USING btree (user_id, role);
2905 -- Name: user_tokens_token_idx; Type: INDEX; Schema: public; Owner: -
2908 CREATE UNIQUE INDEX user_tokens_token_idx ON public.user_tokens USING btree (token);
2912 -- Name: user_tokens_user_id_idx; Type: INDEX; Schema: public; Owner: -
2915 CREATE INDEX user_tokens_user_id_idx ON public.user_tokens USING btree (user_id);
2919 -- Name: users_auth_idx; Type: INDEX; Schema: public; Owner: -
2922 CREATE UNIQUE INDEX users_auth_idx ON public.users USING btree (auth_provider, auth_uid);
2926 -- Name: users_display_name_canonical_idx; Type: INDEX; Schema: public; Owner: -
2929 CREATE INDEX users_display_name_canonical_idx ON public.users USING btree (lower(NORMALIZE(display_name, NFKC)));
2933 -- Name: users_display_name_idx; Type: INDEX; Schema: public; Owner: -
2936 CREATE UNIQUE INDEX users_display_name_idx ON public.users USING btree (display_name);
2940 -- Name: users_email_idx; Type: INDEX; Schema: public; Owner: -
2943 CREATE UNIQUE INDEX users_email_idx ON public.users USING btree (email);
2947 -- Name: users_email_lower_idx; Type: INDEX; Schema: public; Owner: -
2950 CREATE INDEX users_email_lower_idx ON public.users USING btree (lower((email)::text));
2954 -- Name: users_home_idx; Type: INDEX; Schema: public; Owner: -
2957 CREATE INDEX users_home_idx ON public.users USING btree (home_tile);
2961 -- Name: way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -
2964 CREATE INDEX way_nodes_node_idx ON public.way_nodes USING btree (node_id);
2968 -- Name: ways_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
2971 CREATE INDEX ways_changeset_id_idx ON public.ways USING btree (changeset_id);
2975 -- Name: ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2978 CREATE INDEX ways_timestamp_idx ON public.ways USING btree ("timestamp");
2982 -- Name: changeset_comments changeset_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2985 ALTER TABLE ONLY public.changeset_comments
2986 ADD CONSTRAINT changeset_comments_author_id_fkey FOREIGN KEY (author_id) REFERENCES public.users(id);
2990 -- Name: changeset_comments changeset_comments_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2993 ALTER TABLE ONLY public.changeset_comments
2994 ADD CONSTRAINT changeset_comments_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
2998 -- Name: changeset_tags changeset_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3001 ALTER TABLE ONLY public.changeset_tags
3002 ADD CONSTRAINT changeset_tags_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
3006 -- Name: changesets_subscribers changesets_subscribers_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3009 ALTER TABLE ONLY public.changesets_subscribers
3010 ADD CONSTRAINT changesets_subscribers_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
3014 -- Name: changesets_subscribers changesets_subscribers_subscriber_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3017 ALTER TABLE ONLY public.changesets_subscribers
3018 ADD CONSTRAINT changesets_subscribers_subscriber_id_fkey FOREIGN KEY (subscriber_id) REFERENCES public.users(id);
3022 -- Name: changesets changesets_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3025 ALTER TABLE ONLY public.changesets
3026 ADD CONSTRAINT changesets_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3030 -- Name: client_applications client_applications_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3033 ALTER TABLE ONLY public.client_applications
3034 ADD CONSTRAINT client_applications_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3038 -- Name: current_node_tags current_node_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3041 ALTER TABLE ONLY public.current_node_tags
3042 ADD CONSTRAINT current_node_tags_id_fkey FOREIGN KEY (node_id) REFERENCES public.current_nodes(id);
3046 -- Name: current_nodes current_nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3049 ALTER TABLE ONLY public.current_nodes
3050 ADD CONSTRAINT current_nodes_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
3054 -- Name: current_relation_members current_relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3057 ALTER TABLE ONLY public.current_relation_members
3058 ADD CONSTRAINT current_relation_members_id_fkey FOREIGN KEY (relation_id) REFERENCES public.current_relations(id);
3062 -- Name: current_relation_tags current_relation_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3065 ALTER TABLE ONLY public.current_relation_tags
3066 ADD CONSTRAINT current_relation_tags_id_fkey FOREIGN KEY (relation_id) REFERENCES public.current_relations(id);
3070 -- Name: current_relations current_relations_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3073 ALTER TABLE ONLY public.current_relations
3074 ADD CONSTRAINT current_relations_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
3078 -- Name: current_way_nodes current_way_nodes_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3081 ALTER TABLE ONLY public.current_way_nodes
3082 ADD CONSTRAINT current_way_nodes_id_fkey FOREIGN KEY (way_id) REFERENCES public.current_ways(id);
3086 -- Name: current_way_nodes current_way_nodes_node_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3089 ALTER TABLE ONLY public.current_way_nodes
3090 ADD CONSTRAINT current_way_nodes_node_id_fkey FOREIGN KEY (node_id) REFERENCES public.current_nodes(id);
3094 -- Name: current_way_tags current_way_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3097 ALTER TABLE ONLY public.current_way_tags
3098 ADD CONSTRAINT current_way_tags_id_fkey FOREIGN KEY (way_id) REFERENCES public.current_ways(id);
3102 -- Name: current_ways current_ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3105 ALTER TABLE ONLY public.current_ways
3106 ADD CONSTRAINT current_ways_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
3110 -- Name: diary_comments diary_comments_diary_entry_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3113 ALTER TABLE ONLY public.diary_comments
3114 ADD CONSTRAINT diary_comments_diary_entry_id_fkey FOREIGN KEY (diary_entry_id) REFERENCES public.diary_entries(id);
3118 -- Name: diary_comments diary_comments_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3121 ALTER TABLE ONLY public.diary_comments
3122 ADD CONSTRAINT diary_comments_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3126 -- Name: diary_entries diary_entries_language_code_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3129 ALTER TABLE ONLY public.diary_entries
3130 ADD CONSTRAINT diary_entries_language_code_fkey FOREIGN KEY (language_code) REFERENCES public.languages(code);
3134 -- Name: diary_entries diary_entries_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3137 ALTER TABLE ONLY public.diary_entries
3138 ADD CONSTRAINT diary_entries_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3142 -- Name: diary_entry_subscriptions diary_entry_subscriptions_diary_entry_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3145 ALTER TABLE ONLY public.diary_entry_subscriptions
3146 ADD CONSTRAINT diary_entry_subscriptions_diary_entry_id_fkey FOREIGN KEY (diary_entry_id) REFERENCES public.diary_entries(id);
3150 -- Name: diary_entry_subscriptions diary_entry_subscriptions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3153 ALTER TABLE ONLY public.diary_entry_subscriptions
3154 ADD CONSTRAINT diary_entry_subscriptions_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3158 -- Name: oauth_access_grants fk_rails_330c32d8d9; Type: FK CONSTRAINT; Schema: public; Owner: -
3161 ALTER TABLE ONLY public.oauth_access_grants
3162 ADD CONSTRAINT fk_rails_330c32d8d9 FOREIGN KEY (resource_owner_id) REFERENCES public.users(id) NOT VALID;
3166 -- Name: user_mutes fk_rails_591dad3359; Type: FK CONSTRAINT; Schema: public; Owner: -
3169 ALTER TABLE ONLY public.user_mutes
3170 ADD CONSTRAINT fk_rails_591dad3359 FOREIGN KEY (owner_id) REFERENCES public.users(id);
3174 -- Name: oauth_access_tokens fk_rails_732cb83ab7; Type: FK CONSTRAINT; Schema: public; Owner: -
3177 ALTER TABLE ONLY public.oauth_access_tokens
3178 ADD CONSTRAINT fk_rails_732cb83ab7 FOREIGN KEY (application_id) REFERENCES public.oauth_applications(id) NOT VALID;
3182 -- Name: oauth_openid_requests fk_rails_77114b3b09; Type: FK CONSTRAINT; Schema: public; Owner: -
3185 ALTER TABLE ONLY public.oauth_openid_requests
3186 ADD CONSTRAINT fk_rails_77114b3b09 FOREIGN KEY (access_grant_id) REFERENCES public.oauth_access_grants(id) ON DELETE CASCADE;
3190 -- Name: active_storage_variant_records fk_rails_993965df05; Type: FK CONSTRAINT; Schema: public; Owner: -
3193 ALTER TABLE ONLY public.active_storage_variant_records
3194 ADD CONSTRAINT fk_rails_993965df05 FOREIGN KEY (blob_id) REFERENCES public.active_storage_blobs(id);
3198 -- Name: oauth_access_grants fk_rails_b4b53e07b8; Type: FK CONSTRAINT; Schema: public; Owner: -
3201 ALTER TABLE ONLY public.oauth_access_grants
3202 ADD CONSTRAINT fk_rails_b4b53e07b8 FOREIGN KEY (application_id) REFERENCES public.oauth_applications(id) NOT VALID;
3206 -- Name: active_storage_attachments fk_rails_c3b3935057; Type: FK CONSTRAINT; Schema: public; Owner: -
3209 ALTER TABLE ONLY public.active_storage_attachments
3210 ADD CONSTRAINT fk_rails_c3b3935057 FOREIGN KEY (blob_id) REFERENCES public.active_storage_blobs(id);
3214 -- Name: oauth_applications fk_rails_cc886e315a; Type: FK CONSTRAINT; Schema: public; Owner: -
3217 ALTER TABLE ONLY public.oauth_applications
3218 ADD CONSTRAINT fk_rails_cc886e315a FOREIGN KEY (owner_id) REFERENCES public.users(id) NOT VALID;
3222 -- Name: user_mutes fk_rails_e9dd4fb6c3; Type: FK CONSTRAINT; Schema: public; Owner: -
3225 ALTER TABLE ONLY public.user_mutes
3226 ADD CONSTRAINT fk_rails_e9dd4fb6c3 FOREIGN KEY (subject_id) REFERENCES public.users(id);
3230 -- Name: oauth_access_tokens fk_rails_ee63f25419; Type: FK CONSTRAINT; Schema: public; Owner: -
3233 ALTER TABLE ONLY public.oauth_access_tokens
3234 ADD CONSTRAINT fk_rails_ee63f25419 FOREIGN KEY (resource_owner_id) REFERENCES public.users(id) NOT VALID;
3238 -- Name: friends friends_friend_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3241 ALTER TABLE ONLY public.friends
3242 ADD CONSTRAINT friends_friend_user_id_fkey FOREIGN KEY (friend_user_id) REFERENCES public.users(id);
3246 -- Name: friends friends_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3249 ALTER TABLE ONLY public.friends
3250 ADD CONSTRAINT friends_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3254 -- Name: gps_points gps_points_gpx_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3257 ALTER TABLE ONLY public.gps_points
3258 ADD CONSTRAINT gps_points_gpx_id_fkey FOREIGN KEY (gpx_id) REFERENCES public.gpx_files(id);
3262 -- Name: gpx_file_tags gpx_file_tags_gpx_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3265 ALTER TABLE ONLY public.gpx_file_tags
3266 ADD CONSTRAINT gpx_file_tags_gpx_id_fkey FOREIGN KEY (gpx_id) REFERENCES public.gpx_files(id);
3270 -- Name: gpx_files gpx_files_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3273 ALTER TABLE ONLY public.gpx_files
3274 ADD CONSTRAINT gpx_files_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3278 -- Name: issue_comments issue_comments_issue_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3281 ALTER TABLE ONLY public.issue_comments
3282 ADD CONSTRAINT issue_comments_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES public.issues(id);
3286 -- Name: issue_comments issue_comments_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3289 ALTER TABLE ONLY public.issue_comments
3290 ADD CONSTRAINT issue_comments_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3294 -- Name: issues issues_reported_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3297 ALTER TABLE ONLY public.issues
3298 ADD CONSTRAINT issues_reported_user_id_fkey FOREIGN KEY (reported_user_id) REFERENCES public.users(id);
3302 -- Name: issues issues_resolved_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3305 ALTER TABLE ONLY public.issues
3306 ADD CONSTRAINT issues_resolved_by_fkey FOREIGN KEY (resolved_by) REFERENCES public.users(id);
3310 -- Name: issues issues_updated_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3313 ALTER TABLE ONLY public.issues
3314 ADD CONSTRAINT issues_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES public.users(id);
3318 -- Name: messages messages_from_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3321 ALTER TABLE ONLY public.messages
3322 ADD CONSTRAINT messages_from_user_id_fkey FOREIGN KEY (from_user_id) REFERENCES public.users(id);
3326 -- Name: messages messages_to_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3329 ALTER TABLE ONLY public.messages
3330 ADD CONSTRAINT messages_to_user_id_fkey FOREIGN KEY (to_user_id) REFERENCES public.users(id);
3334 -- Name: node_tags node_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3337 ALTER TABLE ONLY public.node_tags
3338 ADD CONSTRAINT node_tags_id_fkey FOREIGN KEY (node_id, version) REFERENCES public.nodes(node_id, version);
3342 -- Name: nodes nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3345 ALTER TABLE ONLY public.nodes
3346 ADD CONSTRAINT nodes_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
3350 -- Name: nodes nodes_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3353 ALTER TABLE ONLY public.nodes
3354 ADD CONSTRAINT nodes_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES public.redactions(id);
3358 -- Name: note_comments note_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3361 ALTER TABLE ONLY public.note_comments
3362 ADD CONSTRAINT note_comments_author_id_fkey FOREIGN KEY (author_id) REFERENCES public.users(id);
3366 -- Name: note_comments note_comments_note_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3369 ALTER TABLE ONLY public.note_comments
3370 ADD CONSTRAINT note_comments_note_id_fkey FOREIGN KEY (note_id) REFERENCES public.notes(id);
3374 -- Name: oauth_tokens oauth_tokens_client_application_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3377 ALTER TABLE ONLY public.oauth_tokens
3378 ADD CONSTRAINT oauth_tokens_client_application_id_fkey FOREIGN KEY (client_application_id) REFERENCES public.client_applications(id);
3382 -- Name: oauth_tokens oauth_tokens_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3385 ALTER TABLE ONLY public.oauth_tokens
3386 ADD CONSTRAINT oauth_tokens_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3390 -- Name: redactions redactions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3393 ALTER TABLE ONLY public.redactions
3394 ADD CONSTRAINT redactions_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3398 -- Name: relation_members relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3401 ALTER TABLE ONLY public.relation_members
3402 ADD CONSTRAINT relation_members_id_fkey FOREIGN KEY (relation_id, version) REFERENCES public.relations(relation_id, version);
3406 -- Name: relation_tags relation_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3409 ALTER TABLE ONLY public.relation_tags
3410 ADD CONSTRAINT relation_tags_id_fkey FOREIGN KEY (relation_id, version) REFERENCES public.relations(relation_id, version);
3414 -- Name: relations relations_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3417 ALTER TABLE ONLY public.relations
3418 ADD CONSTRAINT relations_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
3422 -- Name: relations relations_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3425 ALTER TABLE ONLY public.relations
3426 ADD CONSTRAINT relations_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES public.redactions(id);
3430 -- Name: reports reports_issue_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3433 ALTER TABLE ONLY public.reports
3434 ADD CONSTRAINT reports_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES public.issues(id);
3438 -- Name: reports reports_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3441 ALTER TABLE ONLY public.reports
3442 ADD CONSTRAINT reports_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3446 -- Name: user_blocks user_blocks_moderator_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3449 ALTER TABLE ONLY public.user_blocks
3450 ADD CONSTRAINT user_blocks_moderator_id_fkey FOREIGN KEY (creator_id) REFERENCES public.users(id);
3454 -- Name: user_blocks user_blocks_revoker_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3457 ALTER TABLE ONLY public.user_blocks
3458 ADD CONSTRAINT user_blocks_revoker_id_fkey FOREIGN KEY (revoker_id) REFERENCES public.users(id);
3462 -- Name: user_blocks user_blocks_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3465 ALTER TABLE ONLY public.user_blocks
3466 ADD CONSTRAINT user_blocks_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3470 -- Name: user_preferences user_preferences_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3473 ALTER TABLE ONLY public.user_preferences
3474 ADD CONSTRAINT user_preferences_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3478 -- Name: user_roles user_roles_granter_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3481 ALTER TABLE ONLY public.user_roles
3482 ADD CONSTRAINT user_roles_granter_id_fkey FOREIGN KEY (granter_id) REFERENCES public.users(id);
3486 -- Name: user_roles user_roles_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3489 ALTER TABLE ONLY public.user_roles
3490 ADD CONSTRAINT user_roles_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3494 -- Name: user_tokens user_tokens_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3497 ALTER TABLE ONLY public.user_tokens
3498 ADD CONSTRAINT user_tokens_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3502 -- Name: way_nodes way_nodes_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3505 ALTER TABLE ONLY public.way_nodes
3506 ADD CONSTRAINT way_nodes_id_fkey FOREIGN KEY (way_id, version) REFERENCES public.ways(way_id, version);
3510 -- Name: way_tags way_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3513 ALTER TABLE ONLY public.way_tags
3514 ADD CONSTRAINT way_tags_id_fkey FOREIGN KEY (way_id, version) REFERENCES public.ways(way_id, version);
3518 -- Name: ways ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3521 ALTER TABLE ONLY public.ways
3522 ADD CONSTRAINT ways_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
3526 -- Name: ways ways_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3529 ALTER TABLE ONLY public.ways
3530 ADD CONSTRAINT ways_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES public.redactions(id);
3534 -- PostgreSQL database dump complete
3537 SET search_path TO "$user", public;
3539 INSERT INTO "schema_migrations" (version) VALUES