]> git.openstreetmap.org Git - rails.git/blob - db/structure.sql
Backfill the creation_address column from creation_ip
[rails.git] / db / structure.sql
1 SET statement_timeout = 0;
2 SET lock_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;
11
12 --
13 -- Name: btree_gist; Type: EXTENSION; Schema: -; Owner: -
14 --
15
16 CREATE EXTENSION IF NOT EXISTS btree_gist WITH SCHEMA public;
17
18
19 --
20 -- Name: EXTENSION btree_gist; Type: COMMENT; Schema: -; Owner: -
21 --
22
23 COMMENT ON EXTENSION btree_gist IS 'support for indexing common datatypes in GiST';
24
25
26 --
27 -- Name: format_enum; Type: TYPE; Schema: public; Owner: -
28 --
29
30 CREATE TYPE public.format_enum AS ENUM (
31     'html',
32     'markdown',
33     'text'
34 );
35
36
37 --
38 -- Name: gpx_visibility_enum; Type: TYPE; Schema: public; Owner: -
39 --
40
41 CREATE TYPE public.gpx_visibility_enum AS ENUM (
42     'private',
43     'public',
44     'trackable',
45     'identifiable'
46 );
47
48
49 --
50 -- Name: issue_status_enum; Type: TYPE; Schema: public; Owner: -
51 --
52
53 CREATE TYPE public.issue_status_enum AS ENUM (
54     'open',
55     'ignored',
56     'resolved'
57 );
58
59
60 --
61 -- Name: note_event_enum; Type: TYPE; Schema: public; Owner: -
62 --
63
64 CREATE TYPE public.note_event_enum AS ENUM (
65     'opened',
66     'closed',
67     'reopened',
68     'commented',
69     'hidden'
70 );
71
72
73 --
74 -- Name: note_status_enum; Type: TYPE; Schema: public; Owner: -
75 --
76
77 CREATE TYPE public.note_status_enum AS ENUM (
78     'open',
79     'closed',
80     'hidden'
81 );
82
83
84 --
85 -- Name: nwr_enum; Type: TYPE; Schema: public; Owner: -
86 --
87
88 CREATE TYPE public.nwr_enum AS ENUM (
89     'Node',
90     'Way',
91     'Relation'
92 );
93
94
95 --
96 -- Name: user_role_enum; Type: TYPE; Schema: public; Owner: -
97 --
98
99 CREATE TYPE public.user_role_enum AS ENUM (
100     'administrator',
101     'moderator',
102     'importer'
103 );
104
105
106 --
107 -- Name: user_status_enum; Type: TYPE; Schema: public; Owner: -
108 --
109
110 CREATE TYPE public.user_status_enum AS ENUM (
111     'pending',
112     'active',
113     'confirmed',
114     'suspended',
115     'deleted'
116 );
117
118
119 --
120 -- Name: api_rate_limit(bigint); Type: FUNCTION; Schema: public; Owner: -
121 --
122
123 CREATE FUNCTION public.api_rate_limit(user_id bigint) RETURNS integer
124     LANGUAGE plpgsql STABLE
125     AS $$
126     DECLARE
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;
133       roles text[];
134       last_block timestamp without time zone;
135       first_change timestamp without time zone;
136       active_reports int4;
137       time_since_first_change double precision;
138       max_changes double precision;
139       recent_changes int4;
140     BEGIN
141       SELECT ARRAY_AGG(user_roles.role) INTO STRICT roles FROM user_roles WHERE user_roles.user_id = api_rate_limit.user_id;
142
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;
147       ELSE
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;
149
150         IF FOUND THEN
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;
152         ELSE
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;
154         END IF;
155
156         IF NOT FOUND THEN
157           first_change := CURRENT_TIMESTAMP AT TIME ZONE 'UTC';
158         END IF;
159
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');
163
164         time_since_first_change := EXTRACT(EPOCH FROM CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - first_change);
165
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));
170       END IF;
171
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;
173
174       RETURN max_changes - recent_changes;
175     END;
176     $$;
177
178
179 --
180 -- Name: api_size_limit(bigint); Type: FUNCTION; Schema: public; Owner: -
181 --
182
183 CREATE FUNCTION public.api_size_limit(user_id bigint) RETURNS bigint
184     LANGUAGE plpgsql STABLE
185     AS $$
186     DECLARE
187       min_size_limit int8 := 10000000;
188       initial_size_limit int8 := 30000000;
189       max_size_limit int8 := 5400000000;
190       days_to_max_size_limit int4 := 28;
191       importer_size_limit int8 := 5400000000;
192       moderator_size_limit int8 := 5400000000;
193       roles text[];
194       last_block timestamp without time zone;
195       first_change timestamp without time zone;
196       active_reports int4;
197       time_since_first_change double precision;
198       size_limit int8;
199     BEGIN
200       SELECT ARRAY_AGG(user_roles.role) INTO STRICT roles FROM user_roles WHERE user_roles.user_id = api_size_limit.user_id;
201
202       IF 'moderator' = ANY(roles) THEN
203         size_limit := moderator_size_limit;
204       ELSIF 'importer' = ANY(roles) THEN
205         size_limit := importer_size_limit;
206       ELSE
207         SELECT user_blocks.created_at INTO last_block FROM user_blocks WHERE user_blocks.user_id = api_size_limit.user_id ORDER BY user_blocks.created_at DESC LIMIT 1;
208
209         IF FOUND THEN
210           SELECT changesets.created_at INTO first_change FROM changesets WHERE changesets.user_id = api_size_limit.user_id AND changesets.created_at > last_block ORDER BY changesets.created_at LIMIT 1;
211         ELSE
212           SELECT changesets.created_at INTO first_change FROM changesets WHERE changesets.user_id = api_size_limit.user_id ORDER BY changesets.created_at LIMIT 1;
213         END IF;
214
215         IF NOT FOUND THEN
216           first_change := CURRENT_TIMESTAMP AT TIME ZONE 'UTC';
217         END IF;
218
219         SELECT COUNT(*) INTO STRICT active_reports
220         FROM issues INNER JOIN reports ON reports.issue_id = issues.id
221         WHERE issues.reported_user_id = api_size_limit.user_id AND issues.status = 'open' AND reports.updated_at >= COALESCE(issues.resolved_at, '1970-01-01');
222
223         time_since_first_change := EXTRACT(EPOCH FROM CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - first_change);
224
225         size_limit := max_size_limit * POWER(time_since_first_change, 2) / POWER(days_to_max_size_limit * 24 * 60 * 60, 2);
226         size_limit := GREATEST(initial_size_limit, LEAST(max_size_limit, FLOOR(size_limit)));
227         size_limit := size_limit / POWER(2, active_reports);
228         size_limit := GREATEST(min_size_limit, LEAST(max_size_limit, size_limit));
229       END IF;
230
231       RETURN size_limit;
232     END;
233     $$;
234
235
236 SET default_tablespace = '';
237
238 SET default_table_access_method = heap;
239
240 --
241 -- Name: acls; Type: TABLE; Schema: public; Owner: -
242 --
243
244 CREATE TABLE public.acls (
245     id bigint NOT NULL,
246     address inet,
247     k character varying NOT NULL,
248     v character varying,
249     domain character varying,
250     mx character varying
251 );
252
253
254 --
255 -- Name: acls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
256 --
257
258 CREATE SEQUENCE public.acls_id_seq
259     START WITH 1
260     INCREMENT BY 1
261     NO MINVALUE
262     NO MAXVALUE
263     CACHE 1;
264
265
266 --
267 -- Name: acls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
268 --
269
270 ALTER SEQUENCE public.acls_id_seq OWNED BY public.acls.id;
271
272
273 --
274 -- Name: active_storage_attachments; Type: TABLE; Schema: public; Owner: -
275 --
276
277 CREATE TABLE public.active_storage_attachments (
278     id bigint NOT NULL,
279     name character varying NOT NULL,
280     record_type character varying NOT NULL,
281     record_id bigint NOT NULL,
282     blob_id bigint NOT NULL,
283     created_at timestamp without time zone NOT NULL
284 );
285
286
287 --
288 -- Name: active_storage_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
289 --
290
291 CREATE SEQUENCE public.active_storage_attachments_id_seq
292     START WITH 1
293     INCREMENT BY 1
294     NO MINVALUE
295     NO MAXVALUE
296     CACHE 1;
297
298
299 --
300 -- Name: active_storage_attachments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
301 --
302
303 ALTER SEQUENCE public.active_storage_attachments_id_seq OWNED BY public.active_storage_attachments.id;
304
305
306 --
307 -- Name: active_storage_blobs; Type: TABLE; Schema: public; Owner: -
308 --
309
310 CREATE TABLE public.active_storage_blobs (
311     id bigint NOT NULL,
312     key character varying NOT NULL,
313     filename character varying NOT NULL,
314     content_type character varying,
315     metadata text,
316     byte_size bigint NOT NULL,
317     checksum character varying,
318     created_at timestamp without time zone NOT NULL,
319     service_name character varying NOT NULL
320 );
321
322
323 --
324 -- Name: active_storage_blobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
325 --
326
327 CREATE SEQUENCE public.active_storage_blobs_id_seq
328     START WITH 1
329     INCREMENT BY 1
330     NO MINVALUE
331     NO MAXVALUE
332     CACHE 1;
333
334
335 --
336 -- Name: active_storage_blobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
337 --
338
339 ALTER SEQUENCE public.active_storage_blobs_id_seq OWNED BY public.active_storage_blobs.id;
340
341
342 --
343 -- Name: active_storage_variant_records; Type: TABLE; Schema: public; Owner: -
344 --
345
346 CREATE TABLE public.active_storage_variant_records (
347     id bigint NOT NULL,
348     blob_id bigint NOT NULL,
349     variation_digest character varying NOT NULL
350 );
351
352
353 --
354 -- Name: active_storage_variant_records_id_seq; Type: SEQUENCE; Schema: public; Owner: -
355 --
356
357 CREATE SEQUENCE public.active_storage_variant_records_id_seq
358     START WITH 1
359     INCREMENT BY 1
360     NO MINVALUE
361     NO MAXVALUE
362     CACHE 1;
363
364
365 --
366 -- Name: active_storage_variant_records_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
367 --
368
369 ALTER SEQUENCE public.active_storage_variant_records_id_seq OWNED BY public.active_storage_variant_records.id;
370
371
372 --
373 -- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: -
374 --
375
376 CREATE TABLE public.ar_internal_metadata (
377     key character varying NOT NULL,
378     value character varying,
379     created_at timestamp(6) without time zone NOT NULL,
380     updated_at timestamp(6) without time zone NOT NULL
381 );
382
383
384 --
385 -- Name: changeset_comments; Type: TABLE; Schema: public; Owner: -
386 --
387
388 CREATE TABLE public.changeset_comments (
389     id integer NOT NULL,
390     changeset_id bigint NOT NULL,
391     author_id bigint NOT NULL,
392     body text NOT NULL,
393     created_at timestamp without time zone NOT NULL,
394     visible boolean NOT NULL
395 );
396
397
398 --
399 -- Name: changeset_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
400 --
401
402 CREATE SEQUENCE public.changeset_comments_id_seq
403     AS integer
404     START WITH 1
405     INCREMENT BY 1
406     NO MINVALUE
407     NO MAXVALUE
408     CACHE 1;
409
410
411 --
412 -- Name: changeset_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
413 --
414
415 ALTER SEQUENCE public.changeset_comments_id_seq OWNED BY public.changeset_comments.id;
416
417
418 --
419 -- Name: changeset_tags; Type: TABLE; Schema: public; Owner: -
420 --
421
422 CREATE TABLE public.changeset_tags (
423     changeset_id bigint NOT NULL,
424     k character varying DEFAULT ''::character varying NOT NULL,
425     v character varying DEFAULT ''::character varying NOT NULL
426 );
427
428
429 --
430 -- Name: changesets; Type: TABLE; Schema: public; Owner: -
431 --
432
433 CREATE TABLE public.changesets (
434     id bigint NOT NULL,
435     user_id bigint NOT NULL,
436     created_at timestamp without time zone NOT NULL,
437     min_lat integer,
438     max_lat integer,
439     min_lon integer,
440     max_lon integer,
441     closed_at timestamp without time zone NOT NULL,
442     num_changes integer DEFAULT 0 NOT NULL
443 );
444
445
446 --
447 -- Name: changesets_id_seq; Type: SEQUENCE; Schema: public; Owner: -
448 --
449
450 CREATE SEQUENCE public.changesets_id_seq
451     START WITH 1
452     INCREMENT BY 1
453     NO MINVALUE
454     NO MAXVALUE
455     CACHE 1;
456
457
458 --
459 -- Name: changesets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
460 --
461
462 ALTER SEQUENCE public.changesets_id_seq OWNED BY public.changesets.id;
463
464
465 --
466 -- Name: changesets_subscribers; Type: TABLE; Schema: public; Owner: -
467 --
468
469 CREATE TABLE public.changesets_subscribers (
470     subscriber_id bigint NOT NULL,
471     changeset_id bigint NOT NULL
472 );
473
474
475 --
476 -- Name: current_node_tags; Type: TABLE; Schema: public; Owner: -
477 --
478
479 CREATE TABLE public.current_node_tags (
480     node_id bigint NOT NULL,
481     k character varying DEFAULT ''::character varying NOT NULL,
482     v character varying DEFAULT ''::character varying NOT NULL
483 );
484
485
486 --
487 -- Name: current_nodes; Type: TABLE; Schema: public; Owner: -
488 --
489
490 CREATE TABLE public.current_nodes (
491     id bigint NOT NULL,
492     latitude integer NOT NULL,
493     longitude integer NOT NULL,
494     changeset_id bigint NOT NULL,
495     visible boolean NOT NULL,
496     "timestamp" timestamp without time zone NOT NULL,
497     tile bigint NOT NULL,
498     version bigint NOT NULL
499 );
500
501
502 --
503 -- Name: current_nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
504 --
505
506 CREATE SEQUENCE public.current_nodes_id_seq
507     START WITH 1
508     INCREMENT BY 1
509     NO MINVALUE
510     NO MAXVALUE
511     CACHE 1;
512
513
514 --
515 -- Name: current_nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
516 --
517
518 ALTER SEQUENCE public.current_nodes_id_seq OWNED BY public.current_nodes.id;
519
520
521 --
522 -- Name: current_relation_members; Type: TABLE; Schema: public; Owner: -
523 --
524
525 CREATE TABLE public.current_relation_members (
526     relation_id bigint NOT NULL,
527     member_type public.nwr_enum NOT NULL,
528     member_id bigint NOT NULL,
529     member_role character varying NOT NULL,
530     sequence_id integer DEFAULT 0 NOT NULL
531 );
532
533
534 --
535 -- Name: current_relation_tags; Type: TABLE; Schema: public; Owner: -
536 --
537
538 CREATE TABLE public.current_relation_tags (
539     relation_id bigint NOT NULL,
540     k character varying DEFAULT ''::character varying NOT NULL,
541     v character varying DEFAULT ''::character varying NOT NULL
542 );
543
544
545 --
546 -- Name: current_relations; Type: TABLE; Schema: public; Owner: -
547 --
548
549 CREATE TABLE public.current_relations (
550     id bigint NOT NULL,
551     changeset_id bigint NOT NULL,
552     "timestamp" timestamp without time zone NOT NULL,
553     visible boolean NOT NULL,
554     version bigint NOT NULL
555 );
556
557
558 --
559 -- Name: current_relations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
560 --
561
562 CREATE SEQUENCE public.current_relations_id_seq
563     START WITH 1
564     INCREMENT BY 1
565     NO MINVALUE
566     NO MAXVALUE
567     CACHE 1;
568
569
570 --
571 -- Name: current_relations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
572 --
573
574 ALTER SEQUENCE public.current_relations_id_seq OWNED BY public.current_relations.id;
575
576
577 --
578 -- Name: current_way_nodes; Type: TABLE; Schema: public; Owner: -
579 --
580
581 CREATE TABLE public.current_way_nodes (
582     way_id bigint NOT NULL,
583     node_id bigint NOT NULL,
584     sequence_id bigint NOT NULL
585 );
586
587
588 --
589 -- Name: current_way_tags; Type: TABLE; Schema: public; Owner: -
590 --
591
592 CREATE TABLE public.current_way_tags (
593     way_id bigint NOT NULL,
594     k character varying DEFAULT ''::character varying NOT NULL,
595     v character varying DEFAULT ''::character varying NOT NULL
596 );
597
598
599 --
600 -- Name: current_ways; Type: TABLE; Schema: public; Owner: -
601 --
602
603 CREATE TABLE public.current_ways (
604     id bigint NOT NULL,
605     changeset_id bigint NOT NULL,
606     "timestamp" timestamp without time zone NOT NULL,
607     visible boolean NOT NULL,
608     version bigint NOT NULL
609 );
610
611
612 --
613 -- Name: current_ways_id_seq; Type: SEQUENCE; Schema: public; Owner: -
614 --
615
616 CREATE SEQUENCE public.current_ways_id_seq
617     START WITH 1
618     INCREMENT BY 1
619     NO MINVALUE
620     NO MAXVALUE
621     CACHE 1;
622
623
624 --
625 -- Name: current_ways_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
626 --
627
628 ALTER SEQUENCE public.current_ways_id_seq OWNED BY public.current_ways.id;
629
630
631 --
632 -- Name: delayed_jobs; Type: TABLE; Schema: public; Owner: -
633 --
634
635 CREATE TABLE public.delayed_jobs (
636     id bigint NOT NULL,
637     priority integer DEFAULT 0 NOT NULL,
638     attempts integer DEFAULT 0 NOT NULL,
639     handler text NOT NULL,
640     last_error text,
641     run_at timestamp without time zone,
642     locked_at timestamp without time zone,
643     failed_at timestamp without time zone,
644     locked_by character varying,
645     queue character varying,
646     created_at timestamp without time zone,
647     updated_at timestamp without time zone
648 );
649
650
651 --
652 -- Name: delayed_jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
653 --
654
655 CREATE SEQUENCE public.delayed_jobs_id_seq
656     START WITH 1
657     INCREMENT BY 1
658     NO MINVALUE
659     NO MAXVALUE
660     CACHE 1;
661
662
663 --
664 -- Name: delayed_jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
665 --
666
667 ALTER SEQUENCE public.delayed_jobs_id_seq OWNED BY public.delayed_jobs.id;
668
669
670 --
671 -- Name: diary_comments; Type: TABLE; Schema: public; Owner: -
672 --
673
674 CREATE TABLE public.diary_comments (
675     id bigint NOT NULL,
676     diary_entry_id bigint NOT NULL,
677     user_id bigint NOT NULL,
678     body text NOT NULL,
679     created_at timestamp without time zone NOT NULL,
680     updated_at timestamp without time zone NOT NULL,
681     visible boolean DEFAULT true NOT NULL,
682     body_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
683 );
684
685
686 --
687 -- Name: diary_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
688 --
689
690 CREATE SEQUENCE public.diary_comments_id_seq
691     START WITH 1
692     INCREMENT BY 1
693     NO MINVALUE
694     NO MAXVALUE
695     CACHE 1;
696
697
698 --
699 -- Name: diary_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
700 --
701
702 ALTER SEQUENCE public.diary_comments_id_seq OWNED BY public.diary_comments.id;
703
704
705 --
706 -- Name: diary_entries; Type: TABLE; Schema: public; Owner: -
707 --
708
709 CREATE TABLE public.diary_entries (
710     id bigint NOT NULL,
711     user_id bigint NOT NULL,
712     title character varying NOT NULL,
713     body text NOT NULL,
714     created_at timestamp without time zone NOT NULL,
715     updated_at timestamp without time zone NOT NULL,
716     latitude double precision,
717     longitude double precision,
718     language_code character varying DEFAULT 'en'::character varying NOT NULL,
719     visible boolean DEFAULT true NOT NULL,
720     body_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
721 );
722
723
724 --
725 -- Name: diary_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
726 --
727
728 CREATE SEQUENCE public.diary_entries_id_seq
729     START WITH 1
730     INCREMENT BY 1
731     NO MINVALUE
732     NO MAXVALUE
733     CACHE 1;
734
735
736 --
737 -- Name: diary_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
738 --
739
740 ALTER SEQUENCE public.diary_entries_id_seq OWNED BY public.diary_entries.id;
741
742
743 --
744 -- Name: diary_entry_subscriptions; Type: TABLE; Schema: public; Owner: -
745 --
746
747 CREATE TABLE public.diary_entry_subscriptions (
748     user_id bigint NOT NULL,
749     diary_entry_id bigint NOT NULL
750 );
751
752
753 --
754 -- Name: friends; Type: TABLE; Schema: public; Owner: -
755 --
756
757 CREATE TABLE public.friends (
758     id bigint NOT NULL,
759     user_id bigint NOT NULL,
760     friend_user_id bigint NOT NULL,
761     created_at timestamp without time zone
762 );
763
764
765 --
766 -- Name: friends_id_seq; Type: SEQUENCE; Schema: public; Owner: -
767 --
768
769 CREATE SEQUENCE public.friends_id_seq
770     START WITH 1
771     INCREMENT BY 1
772     NO MINVALUE
773     NO MAXVALUE
774     CACHE 1;
775
776
777 --
778 -- Name: friends_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
779 --
780
781 ALTER SEQUENCE public.friends_id_seq OWNED BY public.friends.id;
782
783
784 --
785 -- Name: gps_points; Type: TABLE; Schema: public; Owner: -
786 --
787
788 CREATE TABLE public.gps_points (
789     altitude double precision,
790     trackid integer NOT NULL,
791     latitude integer NOT NULL,
792     longitude integer NOT NULL,
793     gpx_id bigint NOT NULL,
794     "timestamp" timestamp without time zone,
795     tile bigint
796 );
797
798
799 --
800 -- Name: gpx_file_tags; Type: TABLE; Schema: public; Owner: -
801 --
802
803 CREATE TABLE public.gpx_file_tags (
804     gpx_id bigint NOT NULL,
805     tag character varying NOT NULL,
806     id bigint NOT NULL
807 );
808
809
810 --
811 -- Name: gpx_file_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: -
812 --
813
814 CREATE SEQUENCE public.gpx_file_tags_id_seq
815     START WITH 1
816     INCREMENT BY 1
817     NO MINVALUE
818     NO MAXVALUE
819     CACHE 1;
820
821
822 --
823 -- Name: gpx_file_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
824 --
825
826 ALTER SEQUENCE public.gpx_file_tags_id_seq OWNED BY public.gpx_file_tags.id;
827
828
829 --
830 -- Name: gpx_files; Type: TABLE; Schema: public; Owner: -
831 --
832
833 CREATE TABLE public.gpx_files (
834     id bigint NOT NULL,
835     user_id bigint NOT NULL,
836     visible boolean DEFAULT true NOT NULL,
837     name character varying DEFAULT ''::character varying NOT NULL,
838     size bigint,
839     latitude double precision,
840     longitude double precision,
841     "timestamp" timestamp without time zone NOT NULL,
842     description character varying DEFAULT ''::character varying NOT NULL,
843     inserted boolean NOT NULL,
844     visibility public.gpx_visibility_enum DEFAULT 'public'::public.gpx_visibility_enum NOT NULL
845 );
846
847
848 --
849 -- Name: gpx_files_id_seq; Type: SEQUENCE; Schema: public; Owner: -
850 --
851
852 CREATE SEQUENCE public.gpx_files_id_seq
853     START WITH 1
854     INCREMENT BY 1
855     NO MINVALUE
856     NO MAXVALUE
857     CACHE 1;
858
859
860 --
861 -- Name: gpx_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
862 --
863
864 ALTER SEQUENCE public.gpx_files_id_seq OWNED BY public.gpx_files.id;
865
866
867 --
868 -- Name: issue_comments; Type: TABLE; Schema: public; Owner: -
869 --
870
871 CREATE TABLE public.issue_comments (
872     id integer NOT NULL,
873     issue_id integer NOT NULL,
874     user_id integer NOT NULL,
875     body text NOT NULL,
876     created_at timestamp without time zone NOT NULL,
877     updated_at timestamp without time zone NOT NULL
878 );
879
880
881 --
882 -- Name: issue_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
883 --
884
885 CREATE SEQUENCE public.issue_comments_id_seq
886     AS integer
887     START WITH 1
888     INCREMENT BY 1
889     NO MINVALUE
890     NO MAXVALUE
891     CACHE 1;
892
893
894 --
895 -- Name: issue_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
896 --
897
898 ALTER SEQUENCE public.issue_comments_id_seq OWNED BY public.issue_comments.id;
899
900
901 --
902 -- Name: issues; Type: TABLE; Schema: public; Owner: -
903 --
904
905 CREATE TABLE public.issues (
906     id integer NOT NULL,
907     reportable_type character varying NOT NULL,
908     reportable_id integer NOT NULL,
909     reported_user_id integer,
910     status public.issue_status_enum DEFAULT 'open'::public.issue_status_enum NOT NULL,
911     assigned_role public.user_role_enum NOT NULL,
912     resolved_at timestamp without time zone,
913     resolved_by integer,
914     updated_by integer,
915     reports_count integer DEFAULT 0,
916     created_at timestamp without time zone NOT NULL,
917     updated_at timestamp without time zone NOT NULL
918 );
919
920
921 --
922 -- Name: issues_id_seq; Type: SEQUENCE; Schema: public; Owner: -
923 --
924
925 CREATE SEQUENCE public.issues_id_seq
926     AS integer
927     START WITH 1
928     INCREMENT BY 1
929     NO MINVALUE
930     NO MAXVALUE
931     CACHE 1;
932
933
934 --
935 -- Name: issues_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
936 --
937
938 ALTER SEQUENCE public.issues_id_seq OWNED BY public.issues.id;
939
940
941 --
942 -- Name: languages; Type: TABLE; Schema: public; Owner: -
943 --
944
945 CREATE TABLE public.languages (
946     code character varying NOT NULL,
947     english_name character varying NOT NULL,
948     native_name character varying
949 );
950
951
952 --
953 -- Name: messages; Type: TABLE; Schema: public; Owner: -
954 --
955
956 CREATE TABLE public.messages (
957     id bigint NOT NULL,
958     from_user_id bigint NOT NULL,
959     title character varying NOT NULL,
960     body text NOT NULL,
961     sent_on timestamp without time zone NOT NULL,
962     message_read boolean DEFAULT false NOT NULL,
963     to_user_id bigint NOT NULL,
964     to_user_visible boolean DEFAULT true NOT NULL,
965     from_user_visible boolean DEFAULT true NOT NULL,
966     body_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL,
967     muted boolean DEFAULT false NOT NULL
968 );
969
970
971 --
972 -- Name: messages_id_seq; Type: SEQUENCE; Schema: public; Owner: -
973 --
974
975 CREATE SEQUENCE public.messages_id_seq
976     START WITH 1
977     INCREMENT BY 1
978     NO MINVALUE
979     NO MAXVALUE
980     CACHE 1;
981
982
983 --
984 -- Name: messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
985 --
986
987 ALTER SEQUENCE public.messages_id_seq OWNED BY public.messages.id;
988
989
990 --
991 -- Name: node_tags; Type: TABLE; Schema: public; Owner: -
992 --
993
994 CREATE TABLE public.node_tags (
995     node_id bigint NOT NULL,
996     version bigint NOT NULL,
997     k character varying DEFAULT ''::character varying NOT NULL,
998     v character varying DEFAULT ''::character varying NOT NULL
999 );
1000
1001
1002 --
1003 -- Name: nodes; Type: TABLE; Schema: public; Owner: -
1004 --
1005
1006 CREATE TABLE public.nodes (
1007     node_id bigint NOT NULL,
1008     latitude integer NOT NULL,
1009     longitude integer NOT NULL,
1010     changeset_id bigint NOT NULL,
1011     visible boolean NOT NULL,
1012     "timestamp" timestamp without time zone NOT NULL,
1013     tile bigint NOT NULL,
1014     version bigint NOT NULL,
1015     redaction_id integer
1016 );
1017
1018
1019 --
1020 -- Name: note_comments; Type: TABLE; Schema: public; Owner: -
1021 --
1022
1023 CREATE TABLE public.note_comments (
1024     id bigint NOT NULL,
1025     note_id bigint NOT NULL,
1026     visible boolean NOT NULL,
1027     created_at timestamp without time zone NOT NULL,
1028     author_ip inet,
1029     author_id bigint,
1030     body text,
1031     event public.note_event_enum
1032 );
1033
1034
1035 --
1036 -- Name: note_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1037 --
1038
1039 CREATE SEQUENCE public.note_comments_id_seq
1040     START WITH 1
1041     INCREMENT BY 1
1042     NO MINVALUE
1043     NO MAXVALUE
1044     CACHE 1;
1045
1046
1047 --
1048 -- Name: note_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1049 --
1050
1051 ALTER SEQUENCE public.note_comments_id_seq OWNED BY public.note_comments.id;
1052
1053
1054 --
1055 -- Name: notes; Type: TABLE; Schema: public; Owner: -
1056 --
1057
1058 CREATE TABLE public.notes (
1059     id bigint NOT NULL,
1060     latitude integer NOT NULL,
1061     longitude integer NOT NULL,
1062     tile bigint NOT NULL,
1063     updated_at timestamp without time zone NOT NULL,
1064     created_at timestamp without time zone NOT NULL,
1065     status public.note_status_enum NOT NULL,
1066     closed_at timestamp without time zone
1067 );
1068
1069
1070 --
1071 -- Name: notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1072 --
1073
1074 CREATE SEQUENCE public.notes_id_seq
1075     START WITH 1
1076     INCREMENT BY 1
1077     NO MINVALUE
1078     NO MAXVALUE
1079     CACHE 1;
1080
1081
1082 --
1083 -- Name: notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1084 --
1085
1086 ALTER SEQUENCE public.notes_id_seq OWNED BY public.notes.id;
1087
1088
1089 --
1090 -- Name: oauth_access_grants; Type: TABLE; Schema: public; Owner: -
1091 --
1092
1093 CREATE TABLE public.oauth_access_grants (
1094     id bigint NOT NULL,
1095     resource_owner_id bigint NOT NULL,
1096     application_id bigint NOT NULL,
1097     token character varying NOT NULL,
1098     expires_in integer NOT NULL,
1099     redirect_uri text NOT NULL,
1100     created_at timestamp without time zone NOT NULL,
1101     revoked_at timestamp without time zone,
1102     scopes character varying DEFAULT ''::character varying NOT NULL,
1103     code_challenge character varying,
1104     code_challenge_method character varying
1105 );
1106
1107
1108 --
1109 -- Name: oauth_access_grants_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1110 --
1111
1112 CREATE SEQUENCE public.oauth_access_grants_id_seq
1113     START WITH 1
1114     INCREMENT BY 1
1115     NO MINVALUE
1116     NO MAXVALUE
1117     CACHE 1;
1118
1119
1120 --
1121 -- Name: oauth_access_grants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1122 --
1123
1124 ALTER SEQUENCE public.oauth_access_grants_id_seq OWNED BY public.oauth_access_grants.id;
1125
1126
1127 --
1128 -- Name: oauth_access_tokens; Type: TABLE; Schema: public; Owner: -
1129 --
1130
1131 CREATE TABLE public.oauth_access_tokens (
1132     id bigint NOT NULL,
1133     resource_owner_id bigint,
1134     application_id bigint NOT NULL,
1135     token character varying NOT NULL,
1136     refresh_token character varying,
1137     expires_in integer,
1138     revoked_at timestamp without time zone,
1139     created_at timestamp without time zone NOT NULL,
1140     scopes character varying,
1141     previous_refresh_token character varying DEFAULT ''::character varying NOT NULL
1142 );
1143
1144
1145 --
1146 -- Name: oauth_access_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1147 --
1148
1149 CREATE SEQUENCE public.oauth_access_tokens_id_seq
1150     START WITH 1
1151     INCREMENT BY 1
1152     NO MINVALUE
1153     NO MAXVALUE
1154     CACHE 1;
1155
1156
1157 --
1158 -- Name: oauth_access_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1159 --
1160
1161 ALTER SEQUENCE public.oauth_access_tokens_id_seq OWNED BY public.oauth_access_tokens.id;
1162
1163
1164 --
1165 -- Name: oauth_applications; Type: TABLE; Schema: public; Owner: -
1166 --
1167
1168 CREATE TABLE public.oauth_applications (
1169     id bigint NOT NULL,
1170     owner_type character varying NOT NULL,
1171     owner_id bigint NOT NULL,
1172     name character varying NOT NULL,
1173     uid character varying NOT NULL,
1174     secret character varying NOT NULL,
1175     redirect_uri text NOT NULL,
1176     scopes character varying DEFAULT ''::character varying NOT NULL,
1177     confidential boolean DEFAULT true NOT NULL,
1178     created_at timestamp(6) without time zone NOT NULL,
1179     updated_at timestamp(6) without time zone NOT NULL
1180 );
1181
1182
1183 --
1184 -- Name: oauth_applications_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1185 --
1186
1187 CREATE SEQUENCE public.oauth_applications_id_seq
1188     START WITH 1
1189     INCREMENT BY 1
1190     NO MINVALUE
1191     NO MAXVALUE
1192     CACHE 1;
1193
1194
1195 --
1196 -- Name: oauth_applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1197 --
1198
1199 ALTER SEQUENCE public.oauth_applications_id_seq OWNED BY public.oauth_applications.id;
1200
1201
1202 --
1203 -- Name: oauth_openid_requests; Type: TABLE; Schema: public; Owner: -
1204 --
1205
1206 CREATE TABLE public.oauth_openid_requests (
1207     id bigint NOT NULL,
1208     access_grant_id bigint NOT NULL,
1209     nonce character varying NOT NULL
1210 );
1211
1212
1213 --
1214 -- Name: oauth_openid_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1215 --
1216
1217 CREATE SEQUENCE public.oauth_openid_requests_id_seq
1218     START WITH 1
1219     INCREMENT BY 1
1220     NO MINVALUE
1221     NO MAXVALUE
1222     CACHE 1;
1223
1224
1225 --
1226 -- Name: oauth_openid_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1227 --
1228
1229 ALTER SEQUENCE public.oauth_openid_requests_id_seq OWNED BY public.oauth_openid_requests.id;
1230
1231
1232 --
1233 -- Name: redactions; Type: TABLE; Schema: public; Owner: -
1234 --
1235
1236 CREATE TABLE public.redactions (
1237     id integer NOT NULL,
1238     title character varying NOT NULL,
1239     description text NOT NULL,
1240     created_at timestamp without time zone,
1241     updated_at timestamp without time zone,
1242     user_id bigint NOT NULL,
1243     description_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL
1244 );
1245
1246
1247 --
1248 -- Name: redactions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1249 --
1250
1251 CREATE SEQUENCE public.redactions_id_seq
1252     AS integer
1253     START WITH 1
1254     INCREMENT BY 1
1255     NO MINVALUE
1256     NO MAXVALUE
1257     CACHE 1;
1258
1259
1260 --
1261 -- Name: redactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1262 --
1263
1264 ALTER SEQUENCE public.redactions_id_seq OWNED BY public.redactions.id;
1265
1266
1267 --
1268 -- Name: relation_members; Type: TABLE; Schema: public; Owner: -
1269 --
1270
1271 CREATE TABLE public.relation_members (
1272     relation_id bigint NOT NULL,
1273     member_type public.nwr_enum NOT NULL,
1274     member_id bigint NOT NULL,
1275     member_role character varying NOT NULL,
1276     version bigint DEFAULT 0 NOT NULL,
1277     sequence_id integer DEFAULT 0 NOT NULL
1278 );
1279
1280
1281 --
1282 -- Name: relation_tags; Type: TABLE; Schema: public; Owner: -
1283 --
1284
1285 CREATE TABLE public.relation_tags (
1286     relation_id bigint NOT NULL,
1287     k character varying DEFAULT ''::character varying NOT NULL,
1288     v character varying DEFAULT ''::character varying NOT NULL,
1289     version bigint NOT NULL
1290 );
1291
1292
1293 --
1294 -- Name: relations; Type: TABLE; Schema: public; Owner: -
1295 --
1296
1297 CREATE TABLE public.relations (
1298     relation_id bigint NOT NULL,
1299     changeset_id bigint NOT NULL,
1300     "timestamp" timestamp without time zone NOT NULL,
1301     version bigint NOT NULL,
1302     visible boolean DEFAULT true NOT NULL,
1303     redaction_id integer
1304 );
1305
1306
1307 --
1308 -- Name: reports; Type: TABLE; Schema: public; Owner: -
1309 --
1310
1311 CREATE TABLE public.reports (
1312     id integer NOT NULL,
1313     issue_id integer NOT NULL,
1314     user_id integer NOT NULL,
1315     details text NOT NULL,
1316     category character varying NOT NULL,
1317     created_at timestamp without time zone NOT NULL,
1318     updated_at timestamp without time zone NOT NULL
1319 );
1320
1321
1322 --
1323 -- Name: reports_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1324 --
1325
1326 CREATE SEQUENCE public.reports_id_seq
1327     AS integer
1328     START WITH 1
1329     INCREMENT BY 1
1330     NO MINVALUE
1331     NO MAXVALUE
1332     CACHE 1;
1333
1334
1335 --
1336 -- Name: reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1337 --
1338
1339 ALTER SEQUENCE public.reports_id_seq OWNED BY public.reports.id;
1340
1341
1342 --
1343 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
1344 --
1345
1346 CREATE TABLE public.schema_migrations (
1347     version character varying NOT NULL
1348 );
1349
1350
1351 --
1352 -- Name: user_blocks; Type: TABLE; Schema: public; Owner: -
1353 --
1354
1355 CREATE TABLE public.user_blocks (
1356     id integer NOT NULL,
1357     user_id bigint NOT NULL,
1358     creator_id bigint NOT NULL,
1359     reason text NOT NULL,
1360     ends_at timestamp without time zone NOT NULL,
1361     needs_view boolean DEFAULT false NOT NULL,
1362     revoker_id bigint,
1363     created_at timestamp without time zone,
1364     updated_at timestamp without time zone,
1365     reason_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL,
1366     deactivates_at timestamp without time zone
1367 );
1368
1369
1370 --
1371 -- Name: user_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1372 --
1373
1374 CREATE SEQUENCE public.user_blocks_id_seq
1375     AS integer
1376     START WITH 1
1377     INCREMENT BY 1
1378     NO MINVALUE
1379     NO MAXVALUE
1380     CACHE 1;
1381
1382
1383 --
1384 -- Name: user_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1385 --
1386
1387 ALTER SEQUENCE public.user_blocks_id_seq OWNED BY public.user_blocks.id;
1388
1389
1390 --
1391 -- Name: user_mutes; Type: TABLE; Schema: public; Owner: -
1392 --
1393
1394 CREATE TABLE public.user_mutes (
1395     id bigint NOT NULL,
1396     owner_id bigint NOT NULL,
1397     subject_id bigint NOT NULL,
1398     created_at timestamp(6) without time zone NOT NULL,
1399     updated_at timestamp(6) without time zone NOT NULL
1400 );
1401
1402
1403 --
1404 -- Name: user_mutes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1405 --
1406
1407 CREATE SEQUENCE public.user_mutes_id_seq
1408     START WITH 1
1409     INCREMENT BY 1
1410     NO MINVALUE
1411     NO MAXVALUE
1412     CACHE 1;
1413
1414
1415 --
1416 -- Name: user_mutes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1417 --
1418
1419 ALTER SEQUENCE public.user_mutes_id_seq OWNED BY public.user_mutes.id;
1420
1421
1422 --
1423 -- Name: user_preferences; Type: TABLE; Schema: public; Owner: -
1424 --
1425
1426 CREATE TABLE public.user_preferences (
1427     user_id bigint NOT NULL,
1428     k character varying NOT NULL,
1429     v character varying NOT NULL
1430 );
1431
1432
1433 --
1434 -- Name: user_roles; Type: TABLE; Schema: public; Owner: -
1435 --
1436
1437 CREATE TABLE public.user_roles (
1438     id integer NOT NULL,
1439     user_id bigint NOT NULL,
1440     role public.user_role_enum NOT NULL,
1441     created_at timestamp without time zone,
1442     updated_at timestamp without time zone,
1443     granter_id bigint NOT NULL
1444 );
1445
1446
1447 --
1448 -- Name: user_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1449 --
1450
1451 CREATE SEQUENCE public.user_roles_id_seq
1452     AS integer
1453     START WITH 1
1454     INCREMENT BY 1
1455     NO MINVALUE
1456     NO MAXVALUE
1457     CACHE 1;
1458
1459
1460 --
1461 -- Name: user_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1462 --
1463
1464 ALTER SEQUENCE public.user_roles_id_seq OWNED BY public.user_roles.id;
1465
1466
1467 --
1468 -- Name: users; Type: TABLE; Schema: public; Owner: -
1469 --
1470
1471 CREATE TABLE public.users (
1472     email character varying NOT NULL,
1473     id bigint NOT NULL,
1474     pass_crypt character varying NOT NULL,
1475     creation_time timestamp without time zone NOT NULL,
1476     display_name character varying DEFAULT ''::character varying NOT NULL,
1477     data_public boolean DEFAULT false NOT NULL,
1478     description text DEFAULT ''::text NOT NULL,
1479     home_lat double precision,
1480     home_lon double precision,
1481     home_zoom smallint DEFAULT 3,
1482     pass_salt character varying,
1483     email_valid boolean DEFAULT false NOT NULL,
1484     new_email character varying,
1485     creation_ip character varying,
1486     languages character varying,
1487     status public.user_status_enum DEFAULT 'pending'::public.user_status_enum NOT NULL,
1488     terms_agreed timestamp without time zone,
1489     consider_pd boolean DEFAULT false NOT NULL,
1490     auth_uid character varying,
1491     preferred_editor character varying,
1492     terms_seen boolean DEFAULT false NOT NULL,
1493     description_format public.format_enum DEFAULT 'markdown'::public.format_enum NOT NULL,
1494     changesets_count integer DEFAULT 0 NOT NULL,
1495     traces_count integer DEFAULT 0 NOT NULL,
1496     diary_entries_count integer DEFAULT 0 NOT NULL,
1497     image_use_gravatar boolean DEFAULT false NOT NULL,
1498     auth_provider character varying,
1499     home_tile bigint,
1500     tou_agreed timestamp without time zone,
1501     diary_comments_count integer DEFAULT 0,
1502     note_comments_count integer DEFAULT 0,
1503     creation_address inet
1504 );
1505
1506
1507 --
1508 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1509 --
1510
1511 CREATE SEQUENCE public.users_id_seq
1512     START WITH 1
1513     INCREMENT BY 1
1514     NO MINVALUE
1515     NO MAXVALUE
1516     CACHE 1;
1517
1518
1519 --
1520 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1521 --
1522
1523 ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
1524
1525
1526 --
1527 -- Name: way_nodes; Type: TABLE; Schema: public; Owner: -
1528 --
1529
1530 CREATE TABLE public.way_nodes (
1531     way_id bigint NOT NULL,
1532     node_id bigint NOT NULL,
1533     version bigint NOT NULL,
1534     sequence_id bigint NOT NULL
1535 );
1536
1537
1538 --
1539 -- Name: way_tags; Type: TABLE; Schema: public; Owner: -
1540 --
1541
1542 CREATE TABLE public.way_tags (
1543     way_id bigint NOT NULL,
1544     k character varying NOT NULL,
1545     v character varying NOT NULL,
1546     version bigint NOT NULL
1547 );
1548
1549
1550 --
1551 -- Name: ways; Type: TABLE; Schema: public; Owner: -
1552 --
1553
1554 CREATE TABLE public.ways (
1555     way_id bigint NOT NULL,
1556     changeset_id bigint NOT NULL,
1557     "timestamp" timestamp without time zone NOT NULL,
1558     version bigint NOT NULL,
1559     visible boolean DEFAULT true NOT NULL,
1560     redaction_id integer
1561 );
1562
1563
1564 --
1565 -- Name: acls id; Type: DEFAULT; Schema: public; Owner: -
1566 --
1567
1568 ALTER TABLE ONLY public.acls ALTER COLUMN id SET DEFAULT nextval('public.acls_id_seq'::regclass);
1569
1570
1571 --
1572 -- Name: active_storage_attachments id; Type: DEFAULT; Schema: public; Owner: -
1573 --
1574
1575 ALTER TABLE ONLY public.active_storage_attachments ALTER COLUMN id SET DEFAULT nextval('public.active_storage_attachments_id_seq'::regclass);
1576
1577
1578 --
1579 -- Name: active_storage_blobs id; Type: DEFAULT; Schema: public; Owner: -
1580 --
1581
1582 ALTER TABLE ONLY public.active_storage_blobs ALTER COLUMN id SET DEFAULT nextval('public.active_storage_blobs_id_seq'::regclass);
1583
1584
1585 --
1586 -- Name: active_storage_variant_records id; Type: DEFAULT; Schema: public; Owner: -
1587 --
1588
1589 ALTER TABLE ONLY public.active_storage_variant_records ALTER COLUMN id SET DEFAULT nextval('public.active_storage_variant_records_id_seq'::regclass);
1590
1591
1592 --
1593 -- Name: changeset_comments id; Type: DEFAULT; Schema: public; Owner: -
1594 --
1595
1596 ALTER TABLE ONLY public.changeset_comments ALTER COLUMN id SET DEFAULT nextval('public.changeset_comments_id_seq'::regclass);
1597
1598
1599 --
1600 -- Name: changesets id; Type: DEFAULT; Schema: public; Owner: -
1601 --
1602
1603 ALTER TABLE ONLY public.changesets ALTER COLUMN id SET DEFAULT nextval('public.changesets_id_seq'::regclass);
1604
1605
1606 --
1607 -- Name: current_nodes id; Type: DEFAULT; Schema: public; Owner: -
1608 --
1609
1610 ALTER TABLE ONLY public.current_nodes ALTER COLUMN id SET DEFAULT nextval('public.current_nodes_id_seq'::regclass);
1611
1612
1613 --
1614 -- Name: current_relations id; Type: DEFAULT; Schema: public; Owner: -
1615 --
1616
1617 ALTER TABLE ONLY public.current_relations ALTER COLUMN id SET DEFAULT nextval('public.current_relations_id_seq'::regclass);
1618
1619
1620 --
1621 -- Name: current_ways id; Type: DEFAULT; Schema: public; Owner: -
1622 --
1623
1624 ALTER TABLE ONLY public.current_ways ALTER COLUMN id SET DEFAULT nextval('public.current_ways_id_seq'::regclass);
1625
1626
1627 --
1628 -- Name: delayed_jobs id; Type: DEFAULT; Schema: public; Owner: -
1629 --
1630
1631 ALTER TABLE ONLY public.delayed_jobs ALTER COLUMN id SET DEFAULT nextval('public.delayed_jobs_id_seq'::regclass);
1632
1633
1634 --
1635 -- Name: diary_comments id; Type: DEFAULT; Schema: public; Owner: -
1636 --
1637
1638 ALTER TABLE ONLY public.diary_comments ALTER COLUMN id SET DEFAULT nextval('public.diary_comments_id_seq'::regclass);
1639
1640
1641 --
1642 -- Name: diary_entries id; Type: DEFAULT; Schema: public; Owner: -
1643 --
1644
1645 ALTER TABLE ONLY public.diary_entries ALTER COLUMN id SET DEFAULT nextval('public.diary_entries_id_seq'::regclass);
1646
1647
1648 --
1649 -- Name: friends id; Type: DEFAULT; Schema: public; Owner: -
1650 --
1651
1652 ALTER TABLE ONLY public.friends ALTER COLUMN id SET DEFAULT nextval('public.friends_id_seq'::regclass);
1653
1654
1655 --
1656 -- Name: gpx_file_tags id; Type: DEFAULT; Schema: public; Owner: -
1657 --
1658
1659 ALTER TABLE ONLY public.gpx_file_tags ALTER COLUMN id SET DEFAULT nextval('public.gpx_file_tags_id_seq'::regclass);
1660
1661
1662 --
1663 -- Name: gpx_files id; Type: DEFAULT; Schema: public; Owner: -
1664 --
1665
1666 ALTER TABLE ONLY public.gpx_files ALTER COLUMN id SET DEFAULT nextval('public.gpx_files_id_seq'::regclass);
1667
1668
1669 --
1670 -- Name: issue_comments id; Type: DEFAULT; Schema: public; Owner: -
1671 --
1672
1673 ALTER TABLE ONLY public.issue_comments ALTER COLUMN id SET DEFAULT nextval('public.issue_comments_id_seq'::regclass);
1674
1675
1676 --
1677 -- Name: issues id; Type: DEFAULT; Schema: public; Owner: -
1678 --
1679
1680 ALTER TABLE ONLY public.issues ALTER COLUMN id SET DEFAULT nextval('public.issues_id_seq'::regclass);
1681
1682
1683 --
1684 -- Name: messages id; Type: DEFAULT; Schema: public; Owner: -
1685 --
1686
1687 ALTER TABLE ONLY public.messages ALTER COLUMN id SET DEFAULT nextval('public.messages_id_seq'::regclass);
1688
1689
1690 --
1691 -- Name: note_comments id; Type: DEFAULT; Schema: public; Owner: -
1692 --
1693
1694 ALTER TABLE ONLY public.note_comments ALTER COLUMN id SET DEFAULT nextval('public.note_comments_id_seq'::regclass);
1695
1696
1697 --
1698 -- Name: notes id; Type: DEFAULT; Schema: public; Owner: -
1699 --
1700
1701 ALTER TABLE ONLY public.notes ALTER COLUMN id SET DEFAULT nextval('public.notes_id_seq'::regclass);
1702
1703
1704 --
1705 -- Name: oauth_access_grants id; Type: DEFAULT; Schema: public; Owner: -
1706 --
1707
1708 ALTER TABLE ONLY public.oauth_access_grants ALTER COLUMN id SET DEFAULT nextval('public.oauth_access_grants_id_seq'::regclass);
1709
1710
1711 --
1712 -- Name: oauth_access_tokens id; Type: DEFAULT; Schema: public; Owner: -
1713 --
1714
1715 ALTER TABLE ONLY public.oauth_access_tokens ALTER COLUMN id SET DEFAULT nextval('public.oauth_access_tokens_id_seq'::regclass);
1716
1717
1718 --
1719 -- Name: oauth_applications id; Type: DEFAULT; Schema: public; Owner: -
1720 --
1721
1722 ALTER TABLE ONLY public.oauth_applications ALTER COLUMN id SET DEFAULT nextval('public.oauth_applications_id_seq'::regclass);
1723
1724
1725 --
1726 -- Name: oauth_openid_requests id; Type: DEFAULT; Schema: public; Owner: -
1727 --
1728
1729 ALTER TABLE ONLY public.oauth_openid_requests ALTER COLUMN id SET DEFAULT nextval('public.oauth_openid_requests_id_seq'::regclass);
1730
1731
1732 --
1733 -- Name: redactions id; Type: DEFAULT; Schema: public; Owner: -
1734 --
1735
1736 ALTER TABLE ONLY public.redactions ALTER COLUMN id SET DEFAULT nextval('public.redactions_id_seq'::regclass);
1737
1738
1739 --
1740 -- Name: reports id; Type: DEFAULT; Schema: public; Owner: -
1741 --
1742
1743 ALTER TABLE ONLY public.reports ALTER COLUMN id SET DEFAULT nextval('public.reports_id_seq'::regclass);
1744
1745
1746 --
1747 -- Name: user_blocks id; Type: DEFAULT; Schema: public; Owner: -
1748 --
1749
1750 ALTER TABLE ONLY public.user_blocks ALTER COLUMN id SET DEFAULT nextval('public.user_blocks_id_seq'::regclass);
1751
1752
1753 --
1754 -- Name: user_mutes id; Type: DEFAULT; Schema: public; Owner: -
1755 --
1756
1757 ALTER TABLE ONLY public.user_mutes ALTER COLUMN id SET DEFAULT nextval('public.user_mutes_id_seq'::regclass);
1758
1759
1760 --
1761 -- Name: user_roles id; Type: DEFAULT; Schema: public; Owner: -
1762 --
1763
1764 ALTER TABLE ONLY public.user_roles ALTER COLUMN id SET DEFAULT nextval('public.user_roles_id_seq'::regclass);
1765
1766
1767 --
1768 -- Name: users id; Type: DEFAULT; Schema: public; Owner: -
1769 --
1770
1771 ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
1772
1773
1774 --
1775 -- Name: acls acls_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1776 --
1777
1778 ALTER TABLE ONLY public.acls
1779     ADD CONSTRAINT acls_pkey PRIMARY KEY (id);
1780
1781
1782 --
1783 -- Name: active_storage_attachments active_storage_attachments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1784 --
1785
1786 ALTER TABLE ONLY public.active_storage_attachments
1787     ADD CONSTRAINT active_storage_attachments_pkey PRIMARY KEY (id);
1788
1789
1790 --
1791 -- Name: active_storage_blobs active_storage_blobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1792 --
1793
1794 ALTER TABLE ONLY public.active_storage_blobs
1795     ADD CONSTRAINT active_storage_blobs_pkey PRIMARY KEY (id);
1796
1797
1798 --
1799 -- Name: active_storage_variant_records active_storage_variant_records_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1800 --
1801
1802 ALTER TABLE ONLY public.active_storage_variant_records
1803     ADD CONSTRAINT active_storage_variant_records_pkey PRIMARY KEY (id);
1804
1805
1806 --
1807 -- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1808 --
1809
1810 ALTER TABLE ONLY public.ar_internal_metadata
1811     ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key);
1812
1813
1814 --
1815 -- Name: changeset_comments changeset_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1816 --
1817
1818 ALTER TABLE ONLY public.changeset_comments
1819     ADD CONSTRAINT changeset_comments_pkey PRIMARY KEY (id);
1820
1821
1822 --
1823 -- Name: changeset_tags changeset_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1824 --
1825
1826 ALTER TABLE ONLY public.changeset_tags
1827     ADD CONSTRAINT changeset_tags_pkey PRIMARY KEY (changeset_id, k);
1828
1829
1830 --
1831 -- Name: changesets changesets_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1832 --
1833
1834 ALTER TABLE ONLY public.changesets
1835     ADD CONSTRAINT changesets_pkey PRIMARY KEY (id);
1836
1837
1838 --
1839 -- Name: current_node_tags current_node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1840 --
1841
1842 ALTER TABLE ONLY public.current_node_tags
1843     ADD CONSTRAINT current_node_tags_pkey PRIMARY KEY (node_id, k);
1844
1845
1846 --
1847 -- Name: current_nodes current_nodes_pkey1; Type: CONSTRAINT; Schema: public; Owner: -
1848 --
1849
1850 ALTER TABLE ONLY public.current_nodes
1851     ADD CONSTRAINT current_nodes_pkey1 PRIMARY KEY (id);
1852
1853
1854 --
1855 -- Name: current_relation_members current_relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1856 --
1857
1858 ALTER TABLE ONLY public.current_relation_members
1859     ADD CONSTRAINT current_relation_members_pkey PRIMARY KEY (relation_id, sequence_id);
1860
1861
1862 --
1863 -- Name: current_relation_tags current_relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1864 --
1865
1866 ALTER TABLE ONLY public.current_relation_tags
1867     ADD CONSTRAINT current_relation_tags_pkey PRIMARY KEY (relation_id, k);
1868
1869
1870 --
1871 -- Name: current_relations current_relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1872 --
1873
1874 ALTER TABLE ONLY public.current_relations
1875     ADD CONSTRAINT current_relations_pkey PRIMARY KEY (id);
1876
1877
1878 --
1879 -- Name: current_way_nodes current_way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1880 --
1881
1882 ALTER TABLE ONLY public.current_way_nodes
1883     ADD CONSTRAINT current_way_nodes_pkey PRIMARY KEY (way_id, sequence_id);
1884
1885
1886 --
1887 -- Name: current_way_tags current_way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1888 --
1889
1890 ALTER TABLE ONLY public.current_way_tags
1891     ADD CONSTRAINT current_way_tags_pkey PRIMARY KEY (way_id, k);
1892
1893
1894 --
1895 -- Name: current_ways current_ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1896 --
1897
1898 ALTER TABLE ONLY public.current_ways
1899     ADD CONSTRAINT current_ways_pkey PRIMARY KEY (id);
1900
1901
1902 --
1903 -- Name: delayed_jobs delayed_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1904 --
1905
1906 ALTER TABLE ONLY public.delayed_jobs
1907     ADD CONSTRAINT delayed_jobs_pkey PRIMARY KEY (id);
1908
1909
1910 --
1911 -- Name: diary_comments diary_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1912 --
1913
1914 ALTER TABLE ONLY public.diary_comments
1915     ADD CONSTRAINT diary_comments_pkey PRIMARY KEY (id);
1916
1917
1918 --
1919 -- Name: diary_entries diary_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1920 --
1921
1922 ALTER TABLE ONLY public.diary_entries
1923     ADD CONSTRAINT diary_entries_pkey PRIMARY KEY (id);
1924
1925
1926 --
1927 -- Name: diary_entry_subscriptions diary_entry_subscriptions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1928 --
1929
1930 ALTER TABLE ONLY public.diary_entry_subscriptions
1931     ADD CONSTRAINT diary_entry_subscriptions_pkey PRIMARY KEY (user_id, diary_entry_id);
1932
1933
1934 --
1935 -- Name: friends friends_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1936 --
1937
1938 ALTER TABLE ONLY public.friends
1939     ADD CONSTRAINT friends_pkey PRIMARY KEY (id);
1940
1941
1942 --
1943 -- Name: gpx_file_tags gpx_file_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1944 --
1945
1946 ALTER TABLE ONLY public.gpx_file_tags
1947     ADD CONSTRAINT gpx_file_tags_pkey PRIMARY KEY (id);
1948
1949
1950 --
1951 -- Name: gpx_files gpx_files_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1952 --
1953
1954 ALTER TABLE ONLY public.gpx_files
1955     ADD CONSTRAINT gpx_files_pkey PRIMARY KEY (id);
1956
1957
1958 --
1959 -- Name: issue_comments issue_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1960 --
1961
1962 ALTER TABLE ONLY public.issue_comments
1963     ADD CONSTRAINT issue_comments_pkey PRIMARY KEY (id);
1964
1965
1966 --
1967 -- Name: issues issues_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1968 --
1969
1970 ALTER TABLE ONLY public.issues
1971     ADD CONSTRAINT issues_pkey PRIMARY KEY (id);
1972
1973
1974 --
1975 -- Name: languages languages_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1976 --
1977
1978 ALTER TABLE ONLY public.languages
1979     ADD CONSTRAINT languages_pkey PRIMARY KEY (code);
1980
1981
1982 --
1983 -- Name: messages messages_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1984 --
1985
1986 ALTER TABLE ONLY public.messages
1987     ADD CONSTRAINT messages_pkey PRIMARY KEY (id);
1988
1989
1990 --
1991 -- Name: node_tags node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
1992 --
1993
1994 ALTER TABLE ONLY public.node_tags
1995     ADD CONSTRAINT node_tags_pkey PRIMARY KEY (node_id, version, k);
1996
1997
1998 --
1999 -- Name: nodes nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2000 --
2001
2002 ALTER TABLE ONLY public.nodes
2003     ADD CONSTRAINT nodes_pkey PRIMARY KEY (node_id, version);
2004
2005
2006 --
2007 -- Name: note_comments note_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2008 --
2009
2010 ALTER TABLE ONLY public.note_comments
2011     ADD CONSTRAINT note_comments_pkey PRIMARY KEY (id);
2012
2013
2014 --
2015 -- Name: notes notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2016 --
2017
2018 ALTER TABLE ONLY public.notes
2019     ADD CONSTRAINT notes_pkey PRIMARY KEY (id);
2020
2021
2022 --
2023 -- Name: oauth_access_grants oauth_access_grants_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2024 --
2025
2026 ALTER TABLE ONLY public.oauth_access_grants
2027     ADD CONSTRAINT oauth_access_grants_pkey PRIMARY KEY (id);
2028
2029
2030 --
2031 -- Name: oauth_access_tokens oauth_access_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2032 --
2033
2034 ALTER TABLE ONLY public.oauth_access_tokens
2035     ADD CONSTRAINT oauth_access_tokens_pkey PRIMARY KEY (id);
2036
2037
2038 --
2039 -- Name: oauth_applications oauth_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2040 --
2041
2042 ALTER TABLE ONLY public.oauth_applications
2043     ADD CONSTRAINT oauth_applications_pkey PRIMARY KEY (id);
2044
2045
2046 --
2047 -- Name: oauth_openid_requests oauth_openid_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2048 --
2049
2050 ALTER TABLE ONLY public.oauth_openid_requests
2051     ADD CONSTRAINT oauth_openid_requests_pkey PRIMARY KEY (id);
2052
2053
2054 --
2055 -- Name: redactions redactions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2056 --
2057
2058 ALTER TABLE ONLY public.redactions
2059     ADD CONSTRAINT redactions_pkey PRIMARY KEY (id);
2060
2061
2062 --
2063 -- Name: relation_members relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2064 --
2065
2066 ALTER TABLE ONLY public.relation_members
2067     ADD CONSTRAINT relation_members_pkey PRIMARY KEY (relation_id, version, sequence_id);
2068
2069
2070 --
2071 -- Name: relation_tags relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2072 --
2073
2074 ALTER TABLE ONLY public.relation_tags
2075     ADD CONSTRAINT relation_tags_pkey PRIMARY KEY (relation_id, version, k);
2076
2077
2078 --
2079 -- Name: relations relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2080 --
2081
2082 ALTER TABLE ONLY public.relations
2083     ADD CONSTRAINT relations_pkey PRIMARY KEY (relation_id, version);
2084
2085
2086 --
2087 -- Name: reports reports_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2088 --
2089
2090 ALTER TABLE ONLY public.reports
2091     ADD CONSTRAINT reports_pkey PRIMARY KEY (id);
2092
2093
2094 --
2095 -- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2096 --
2097
2098 ALTER TABLE ONLY public.schema_migrations
2099     ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version);
2100
2101
2102 --
2103 -- Name: user_blocks user_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2104 --
2105
2106 ALTER TABLE ONLY public.user_blocks
2107     ADD CONSTRAINT user_blocks_pkey PRIMARY KEY (id);
2108
2109
2110 --
2111 -- Name: user_mutes user_mutes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2112 --
2113
2114 ALTER TABLE ONLY public.user_mutes
2115     ADD CONSTRAINT user_mutes_pkey PRIMARY KEY (id);
2116
2117
2118 --
2119 -- Name: user_preferences user_preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2120 --
2121
2122 ALTER TABLE ONLY public.user_preferences
2123     ADD CONSTRAINT user_preferences_pkey PRIMARY KEY (user_id, k);
2124
2125
2126 --
2127 -- Name: user_roles user_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2128 --
2129
2130 ALTER TABLE ONLY public.user_roles
2131     ADD CONSTRAINT user_roles_pkey PRIMARY KEY (id);
2132
2133
2134 --
2135 -- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2136 --
2137
2138 ALTER TABLE ONLY public.users
2139     ADD CONSTRAINT users_pkey PRIMARY KEY (id);
2140
2141
2142 --
2143 -- Name: way_nodes way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2144 --
2145
2146 ALTER TABLE ONLY public.way_nodes
2147     ADD CONSTRAINT way_nodes_pkey PRIMARY KEY (way_id, version, sequence_id);
2148
2149
2150 --
2151 -- Name: way_tags way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2152 --
2153
2154 ALTER TABLE ONLY public.way_tags
2155     ADD CONSTRAINT way_tags_pkey PRIMARY KEY (way_id, version, k);
2156
2157
2158 --
2159 -- Name: ways ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -
2160 --
2161
2162 ALTER TABLE ONLY public.ways
2163     ADD CONSTRAINT ways_pkey PRIMARY KEY (way_id, version);
2164
2165
2166 --
2167 -- Name: acls_k_idx; Type: INDEX; Schema: public; Owner: -
2168 --
2169
2170 CREATE INDEX acls_k_idx ON public.acls USING btree (k);
2171
2172
2173 --
2174 -- Name: changesets_bbox_idx; Type: INDEX; Schema: public; Owner: -
2175 --
2176
2177 CREATE INDEX changesets_bbox_idx ON public.changesets USING gist (min_lat, max_lat, min_lon, max_lon);
2178
2179
2180 --
2181 -- Name: changesets_closed_at_idx; Type: INDEX; Schema: public; Owner: -
2182 --
2183
2184 CREATE INDEX changesets_closed_at_idx ON public.changesets USING btree (closed_at);
2185
2186
2187 --
2188 -- Name: changesets_created_at_idx; Type: INDEX; Schema: public; Owner: -
2189 --
2190
2191 CREATE INDEX changesets_created_at_idx ON public.changesets USING btree (created_at);
2192
2193
2194 --
2195 -- Name: changesets_user_id_created_at_idx; Type: INDEX; Schema: public; Owner: -
2196 --
2197
2198 CREATE INDEX changesets_user_id_created_at_idx ON public.changesets USING btree (user_id, created_at);
2199
2200
2201 --
2202 -- Name: changesets_user_id_id_idx; Type: INDEX; Schema: public; Owner: -
2203 --
2204
2205 CREATE INDEX changesets_user_id_id_idx ON public.changesets USING btree (user_id, id);
2206
2207
2208 --
2209 -- Name: current_nodes_tile_idx; Type: INDEX; Schema: public; Owner: -
2210 --
2211
2212 CREATE INDEX current_nodes_tile_idx ON public.current_nodes USING btree (tile);
2213
2214
2215 --
2216 -- Name: current_nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2217 --
2218
2219 CREATE INDEX current_nodes_timestamp_idx ON public.current_nodes USING btree ("timestamp");
2220
2221
2222 --
2223 -- Name: current_relation_members_member_idx; Type: INDEX; Schema: public; Owner: -
2224 --
2225
2226 CREATE INDEX current_relation_members_member_idx ON public.current_relation_members USING btree (member_type, member_id);
2227
2228
2229 --
2230 -- Name: current_relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2231 --
2232
2233 CREATE INDEX current_relations_timestamp_idx ON public.current_relations USING btree ("timestamp");
2234
2235
2236 --
2237 -- Name: current_way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -
2238 --
2239
2240 CREATE INDEX current_way_nodes_node_idx ON public.current_way_nodes USING btree (node_id);
2241
2242
2243 --
2244 -- Name: current_ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2245 --
2246
2247 CREATE INDEX current_ways_timestamp_idx ON public.current_ways USING btree ("timestamp");
2248
2249
2250 --
2251 -- Name: delayed_jobs_priority; Type: INDEX; Schema: public; Owner: -
2252 --
2253
2254 CREATE INDEX delayed_jobs_priority ON public.delayed_jobs USING btree (priority, run_at);
2255
2256
2257 --
2258 -- Name: diary_comment_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -
2259 --
2260
2261 CREATE INDEX diary_comment_user_id_created_at_index ON public.diary_comments USING btree (user_id, created_at);
2262
2263
2264 --
2265 -- Name: diary_comments_entry_id_idx; Type: INDEX; Schema: public; Owner: -
2266 --
2267
2268 CREATE UNIQUE INDEX diary_comments_entry_id_idx ON public.diary_comments USING btree (diary_entry_id, id);
2269
2270
2271 --
2272 -- Name: diary_entry_created_at_index; Type: INDEX; Schema: public; Owner: -
2273 --
2274
2275 CREATE INDEX diary_entry_created_at_index ON public.diary_entries USING btree (created_at);
2276
2277
2278 --
2279 -- Name: diary_entry_language_code_created_at_index; Type: INDEX; Schema: public; Owner: -
2280 --
2281
2282 CREATE INDEX diary_entry_language_code_created_at_index ON public.diary_entries USING btree (language_code, created_at);
2283
2284
2285 --
2286 -- Name: diary_entry_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -
2287 --
2288
2289 CREATE INDEX diary_entry_user_id_created_at_index ON public.diary_entries USING btree (user_id, created_at);
2290
2291
2292 --
2293 -- Name: gpx_file_tags_gpxid_idx; Type: INDEX; Schema: public; Owner: -
2294 --
2295
2296 CREATE INDEX gpx_file_tags_gpxid_idx ON public.gpx_file_tags USING btree (gpx_id);
2297
2298
2299 --
2300 -- Name: gpx_file_tags_tag_idx; Type: INDEX; Schema: public; Owner: -
2301 --
2302
2303 CREATE INDEX gpx_file_tags_tag_idx ON public.gpx_file_tags USING btree (tag);
2304
2305
2306 --
2307 -- Name: gpx_files_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2308 --
2309
2310 CREATE INDEX gpx_files_timestamp_idx ON public.gpx_files USING btree ("timestamp");
2311
2312
2313 --
2314 -- Name: gpx_files_user_id_idx; Type: INDEX; Schema: public; Owner: -
2315 --
2316
2317 CREATE INDEX gpx_files_user_id_idx ON public.gpx_files USING btree (user_id);
2318
2319
2320 --
2321 -- Name: gpx_files_visible_visibility_idx; Type: INDEX; Schema: public; Owner: -
2322 --
2323
2324 CREATE INDEX gpx_files_visible_visibility_idx ON public.gpx_files USING btree (visible, visibility);
2325
2326
2327 --
2328 -- Name: index_acls_on_address; Type: INDEX; Schema: public; Owner: -
2329 --
2330
2331 CREATE INDEX index_acls_on_address ON public.acls USING gist (address inet_ops);
2332
2333
2334 --
2335 -- Name: index_acls_on_domain; Type: INDEX; Schema: public; Owner: -
2336 --
2337
2338 CREATE INDEX index_acls_on_domain ON public.acls USING btree (domain);
2339
2340
2341 --
2342 -- Name: index_acls_on_mx; Type: INDEX; Schema: public; Owner: -
2343 --
2344
2345 CREATE INDEX index_acls_on_mx ON public.acls USING btree (mx);
2346
2347
2348 --
2349 -- Name: index_active_storage_attachments_on_blob_id; Type: INDEX; Schema: public; Owner: -
2350 --
2351
2352 CREATE INDEX index_active_storage_attachments_on_blob_id ON public.active_storage_attachments USING btree (blob_id);
2353
2354
2355 --
2356 -- Name: index_active_storage_attachments_uniqueness; Type: INDEX; Schema: public; Owner: -
2357 --
2358
2359 CREATE UNIQUE INDEX index_active_storage_attachments_uniqueness ON public.active_storage_attachments USING btree (record_type, record_id, name, blob_id);
2360
2361
2362 --
2363 -- Name: index_active_storage_blobs_on_key; Type: INDEX; Schema: public; Owner: -
2364 --
2365
2366 CREATE UNIQUE INDEX index_active_storage_blobs_on_key ON public.active_storage_blobs USING btree (key);
2367
2368
2369 --
2370 -- Name: index_active_storage_variant_records_uniqueness; Type: INDEX; Schema: public; Owner: -
2371 --
2372
2373 CREATE UNIQUE INDEX index_active_storage_variant_records_uniqueness ON public.active_storage_variant_records USING btree (blob_id, variation_digest);
2374
2375
2376 --
2377 -- Name: index_changeset_comments_on_author_id_and_created_at; Type: INDEX; Schema: public; Owner: -
2378 --
2379
2380 CREATE INDEX index_changeset_comments_on_author_id_and_created_at ON public.changeset_comments USING btree (author_id, created_at);
2381
2382
2383 --
2384 -- Name: index_changeset_comments_on_changeset_id_and_created_at; Type: INDEX; Schema: public; Owner: -
2385 --
2386
2387 CREATE INDEX index_changeset_comments_on_changeset_id_and_created_at ON public.changeset_comments USING btree (changeset_id, created_at);
2388
2389
2390 --
2391 -- Name: index_changeset_comments_on_created_at; Type: INDEX; Schema: public; Owner: -
2392 --
2393
2394 CREATE INDEX index_changeset_comments_on_created_at ON public.changeset_comments USING btree (created_at);
2395
2396
2397 --
2398 -- Name: index_changesets_on_user_id_and_closed_at; Type: INDEX; Schema: public; Owner: -
2399 --
2400
2401 CREATE INDEX index_changesets_on_user_id_and_closed_at ON public.changesets USING btree (user_id, closed_at);
2402
2403
2404 --
2405 -- Name: index_changesets_subscribers_on_changeset_id; Type: INDEX; Schema: public; Owner: -
2406 --
2407
2408 CREATE INDEX index_changesets_subscribers_on_changeset_id ON public.changesets_subscribers USING btree (changeset_id);
2409
2410
2411 --
2412 -- Name: index_changesets_subscribers_on_subscriber_id_and_changeset_id; Type: INDEX; Schema: public; Owner: -
2413 --
2414
2415 CREATE UNIQUE INDEX index_changesets_subscribers_on_subscriber_id_and_changeset_id ON public.changesets_subscribers USING btree (subscriber_id, changeset_id);
2416
2417
2418 --
2419 -- Name: index_diary_entry_subscriptions_on_diary_entry_id; Type: INDEX; Schema: public; Owner: -
2420 --
2421
2422 CREATE INDEX index_diary_entry_subscriptions_on_diary_entry_id ON public.diary_entry_subscriptions USING btree (diary_entry_id);
2423
2424
2425 --
2426 -- Name: index_friends_on_user_id_and_created_at; Type: INDEX; Schema: public; Owner: -
2427 --
2428
2429 CREATE INDEX index_friends_on_user_id_and_created_at ON public.friends USING btree (user_id, created_at);
2430
2431
2432 --
2433 -- Name: index_issue_comments_on_issue_id; Type: INDEX; Schema: public; Owner: -
2434 --
2435
2436 CREATE INDEX index_issue_comments_on_issue_id ON public.issue_comments USING btree (issue_id);
2437
2438
2439 --
2440 -- Name: index_issue_comments_on_user_id; Type: INDEX; Schema: public; Owner: -
2441 --
2442
2443 CREATE INDEX index_issue_comments_on_user_id ON public.issue_comments USING btree (user_id);
2444
2445
2446 --
2447 -- Name: index_issues_on_assigned_role; Type: INDEX; Schema: public; Owner: -
2448 --
2449
2450 CREATE INDEX index_issues_on_assigned_role ON public.issues USING btree (assigned_role);
2451
2452
2453 --
2454 -- Name: index_issues_on_reportable_type_and_reportable_id; Type: INDEX; Schema: public; Owner: -
2455 --
2456
2457 CREATE INDEX index_issues_on_reportable_type_and_reportable_id ON public.issues USING btree (reportable_type, reportable_id);
2458
2459
2460 --
2461 -- Name: index_issues_on_reported_user_id; Type: INDEX; Schema: public; Owner: -
2462 --
2463
2464 CREATE INDEX index_issues_on_reported_user_id ON public.issues USING btree (reported_user_id);
2465
2466
2467 --
2468 -- Name: index_issues_on_status; Type: INDEX; Schema: public; Owner: -
2469 --
2470
2471 CREATE INDEX index_issues_on_status ON public.issues USING btree (status);
2472
2473
2474 --
2475 -- Name: index_issues_on_updated_by; Type: INDEX; Schema: public; Owner: -
2476 --
2477
2478 CREATE INDEX index_issues_on_updated_by ON public.issues USING btree (updated_by);
2479
2480
2481 --
2482 -- Name: index_note_comments_on_author_id_and_created_at; Type: INDEX; Schema: public; Owner: -
2483 --
2484
2485 CREATE INDEX index_note_comments_on_author_id_and_created_at ON public.note_comments USING btree (author_id, created_at);
2486
2487
2488 --
2489 -- Name: index_note_comments_on_body; Type: INDEX; Schema: public; Owner: -
2490 --
2491
2492 CREATE INDEX index_note_comments_on_body ON public.note_comments USING gin (to_tsvector('english'::regconfig, body));
2493
2494
2495 --
2496 -- Name: index_note_comments_on_created_at; Type: INDEX; Schema: public; Owner: -
2497 --
2498
2499 CREATE INDEX index_note_comments_on_created_at ON public.note_comments USING btree (created_at);
2500
2501
2502 --
2503 -- Name: index_oauth_access_grants_on_application_id; Type: INDEX; Schema: public; Owner: -
2504 --
2505
2506 CREATE INDEX index_oauth_access_grants_on_application_id ON public.oauth_access_grants USING btree (application_id);
2507
2508
2509 --
2510 -- Name: index_oauth_access_grants_on_resource_owner_id; Type: INDEX; Schema: public; Owner: -
2511 --
2512
2513 CREATE INDEX index_oauth_access_grants_on_resource_owner_id ON public.oauth_access_grants USING btree (resource_owner_id);
2514
2515
2516 --
2517 -- Name: index_oauth_access_grants_on_token; Type: INDEX; Schema: public; Owner: -
2518 --
2519
2520 CREATE UNIQUE INDEX index_oauth_access_grants_on_token ON public.oauth_access_grants USING btree (token);
2521
2522
2523 --
2524 -- Name: index_oauth_access_tokens_on_application_id; Type: INDEX; Schema: public; Owner: -
2525 --
2526
2527 CREATE INDEX index_oauth_access_tokens_on_application_id ON public.oauth_access_tokens USING btree (application_id);
2528
2529
2530 --
2531 -- Name: index_oauth_access_tokens_on_refresh_token; Type: INDEX; Schema: public; Owner: -
2532 --
2533
2534 CREATE UNIQUE INDEX index_oauth_access_tokens_on_refresh_token ON public.oauth_access_tokens USING btree (refresh_token);
2535
2536
2537 --
2538 -- Name: index_oauth_access_tokens_on_resource_owner_id; Type: INDEX; Schema: public; Owner: -
2539 --
2540
2541 CREATE INDEX index_oauth_access_tokens_on_resource_owner_id ON public.oauth_access_tokens USING btree (resource_owner_id);
2542
2543
2544 --
2545 -- Name: index_oauth_access_tokens_on_token; Type: INDEX; Schema: public; Owner: -
2546 --
2547
2548 CREATE UNIQUE INDEX index_oauth_access_tokens_on_token ON public.oauth_access_tokens USING btree (token);
2549
2550
2551 --
2552 -- Name: index_oauth_applications_on_owner_type_and_owner_id; Type: INDEX; Schema: public; Owner: -
2553 --
2554
2555 CREATE INDEX index_oauth_applications_on_owner_type_and_owner_id ON public.oauth_applications USING btree (owner_type, owner_id);
2556
2557
2558 --
2559 -- Name: index_oauth_applications_on_uid; Type: INDEX; Schema: public; Owner: -
2560 --
2561
2562 CREATE UNIQUE INDEX index_oauth_applications_on_uid ON public.oauth_applications USING btree (uid);
2563
2564
2565 --
2566 -- Name: index_oauth_openid_requests_on_access_grant_id; Type: INDEX; Schema: public; Owner: -
2567 --
2568
2569 CREATE INDEX index_oauth_openid_requests_on_access_grant_id ON public.oauth_openid_requests USING btree (access_grant_id);
2570
2571
2572 --
2573 -- Name: index_reports_on_issue_id; Type: INDEX; Schema: public; Owner: -
2574 --
2575
2576 CREATE INDEX index_reports_on_issue_id ON public.reports USING btree (issue_id);
2577
2578
2579 --
2580 -- Name: index_reports_on_user_id; Type: INDEX; Schema: public; Owner: -
2581 --
2582
2583 CREATE INDEX index_reports_on_user_id ON public.reports USING btree (user_id);
2584
2585
2586 --
2587 -- Name: index_user_blocks_on_creator_id_and_id; Type: INDEX; Schema: public; Owner: -
2588 --
2589
2590 CREATE INDEX index_user_blocks_on_creator_id_and_id ON public.user_blocks USING btree (creator_id, id);
2591
2592
2593 --
2594 -- Name: index_user_blocks_on_user_id; Type: INDEX; Schema: public; Owner: -
2595 --
2596
2597 CREATE INDEX index_user_blocks_on_user_id ON public.user_blocks USING btree (user_id);
2598
2599
2600 --
2601 -- Name: index_user_mutes_on_owner_id_and_subject_id; Type: INDEX; Schema: public; Owner: -
2602 --
2603
2604 CREATE UNIQUE INDEX index_user_mutes_on_owner_id_and_subject_id ON public.user_mutes USING btree (owner_id, subject_id);
2605
2606
2607 --
2608 -- Name: index_users_on_creation_address; Type: INDEX; Schema: public; Owner: -
2609 --
2610
2611 CREATE INDEX index_users_on_creation_address ON public.users USING gist (creation_address inet_ops);
2612
2613
2614 --
2615 -- Name: messages_from_user_id_idx; Type: INDEX; Schema: public; Owner: -
2616 --
2617
2618 CREATE INDEX messages_from_user_id_idx ON public.messages USING btree (from_user_id);
2619
2620
2621 --
2622 -- Name: messages_to_user_id_idx; Type: INDEX; Schema: public; Owner: -
2623 --
2624
2625 CREATE INDEX messages_to_user_id_idx ON public.messages USING btree (to_user_id);
2626
2627
2628 --
2629 -- Name: nodes_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
2630 --
2631
2632 CREATE INDEX nodes_changeset_id_idx ON public.nodes USING btree (changeset_id);
2633
2634
2635 --
2636 -- Name: nodes_tile_idx; Type: INDEX; Schema: public; Owner: -
2637 --
2638
2639 CREATE INDEX nodes_tile_idx ON public.nodes USING btree (tile);
2640
2641
2642 --
2643 -- Name: nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2644 --
2645
2646 CREATE INDEX nodes_timestamp_idx ON public.nodes USING btree ("timestamp");
2647
2648
2649 --
2650 -- Name: note_comments_note_id_idx; Type: INDEX; Schema: public; Owner: -
2651 --
2652
2653 CREATE INDEX note_comments_note_id_idx ON public.note_comments USING btree (note_id);
2654
2655
2656 --
2657 -- Name: notes_created_at_idx; Type: INDEX; Schema: public; Owner: -
2658 --
2659
2660 CREATE INDEX notes_created_at_idx ON public.notes USING btree (created_at);
2661
2662
2663 --
2664 -- Name: notes_tile_status_idx; Type: INDEX; Schema: public; Owner: -
2665 --
2666
2667 CREATE INDEX notes_tile_status_idx ON public.notes USING btree (tile, status);
2668
2669
2670 --
2671 -- Name: notes_updated_at_idx; Type: INDEX; Schema: public; Owner: -
2672 --
2673
2674 CREATE INDEX notes_updated_at_idx ON public.notes USING btree (updated_at);
2675
2676
2677 --
2678 -- Name: points_gpxid_idx; Type: INDEX; Schema: public; Owner: -
2679 --
2680
2681 CREATE INDEX points_gpxid_idx ON public.gps_points USING btree (gpx_id);
2682
2683
2684 --
2685 -- Name: points_tile_idx; Type: INDEX; Schema: public; Owner: -
2686 --
2687
2688 CREATE INDEX points_tile_idx ON public.gps_points USING btree (tile);
2689
2690
2691 --
2692 -- Name: relation_members_member_idx; Type: INDEX; Schema: public; Owner: -
2693 --
2694
2695 CREATE INDEX relation_members_member_idx ON public.relation_members USING btree (member_type, member_id);
2696
2697
2698 --
2699 -- Name: relations_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
2700 --
2701
2702 CREATE INDEX relations_changeset_id_idx ON public.relations USING btree (changeset_id);
2703
2704
2705 --
2706 -- Name: relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2707 --
2708
2709 CREATE INDEX relations_timestamp_idx ON public.relations USING btree ("timestamp");
2710
2711
2712 --
2713 -- Name: user_id_idx; Type: INDEX; Schema: public; Owner: -
2714 --
2715
2716 CREATE INDEX user_id_idx ON public.friends USING btree (friend_user_id);
2717
2718
2719 --
2720 -- Name: user_roles_id_role_unique; Type: INDEX; Schema: public; Owner: -
2721 --
2722
2723 CREATE UNIQUE INDEX user_roles_id_role_unique ON public.user_roles USING btree (user_id, role);
2724
2725
2726 --
2727 -- Name: users_auth_idx; Type: INDEX; Schema: public; Owner: -
2728 --
2729
2730 CREATE UNIQUE INDEX users_auth_idx ON public.users USING btree (auth_provider, auth_uid);
2731
2732
2733 --
2734 -- Name: users_display_name_canonical_idx; Type: INDEX; Schema: public; Owner: -
2735 --
2736
2737 CREATE INDEX users_display_name_canonical_idx ON public.users USING btree (lower(NORMALIZE(display_name, NFKC)));
2738
2739
2740 --
2741 -- Name: users_display_name_idx; Type: INDEX; Schema: public; Owner: -
2742 --
2743
2744 CREATE UNIQUE INDEX users_display_name_idx ON public.users USING btree (display_name);
2745
2746
2747 --
2748 -- Name: users_email_idx; Type: INDEX; Schema: public; Owner: -
2749 --
2750
2751 CREATE UNIQUE INDEX users_email_idx ON public.users USING btree (email);
2752
2753
2754 --
2755 -- Name: users_email_lower_idx; Type: INDEX; Schema: public; Owner: -
2756 --
2757
2758 CREATE INDEX users_email_lower_idx ON public.users USING btree (lower((email)::text));
2759
2760
2761 --
2762 -- Name: users_home_idx; Type: INDEX; Schema: public; Owner: -
2763 --
2764
2765 CREATE INDEX users_home_idx ON public.users USING btree (home_tile);
2766
2767
2768 --
2769 -- Name: way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -
2770 --
2771
2772 CREATE INDEX way_nodes_node_idx ON public.way_nodes USING btree (node_id);
2773
2774
2775 --
2776 -- Name: ways_changeset_id_idx; Type: INDEX; Schema: public; Owner: -
2777 --
2778
2779 CREATE INDEX ways_changeset_id_idx ON public.ways USING btree (changeset_id);
2780
2781
2782 --
2783 -- Name: ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -
2784 --
2785
2786 CREATE INDEX ways_timestamp_idx ON public.ways USING btree ("timestamp");
2787
2788
2789 --
2790 -- Name: changeset_comments changeset_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2791 --
2792
2793 ALTER TABLE ONLY public.changeset_comments
2794     ADD CONSTRAINT changeset_comments_author_id_fkey FOREIGN KEY (author_id) REFERENCES public.users(id);
2795
2796
2797 --
2798 -- Name: changeset_comments changeset_comments_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2799 --
2800
2801 ALTER TABLE ONLY public.changeset_comments
2802     ADD CONSTRAINT changeset_comments_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
2803
2804
2805 --
2806 -- Name: changeset_tags changeset_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2807 --
2808
2809 ALTER TABLE ONLY public.changeset_tags
2810     ADD CONSTRAINT changeset_tags_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
2811
2812
2813 --
2814 -- Name: changesets_subscribers changesets_subscribers_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2815 --
2816
2817 ALTER TABLE ONLY public.changesets_subscribers
2818     ADD CONSTRAINT changesets_subscribers_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
2819
2820
2821 --
2822 -- Name: changesets_subscribers changesets_subscribers_subscriber_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2823 --
2824
2825 ALTER TABLE ONLY public.changesets_subscribers
2826     ADD CONSTRAINT changesets_subscribers_subscriber_id_fkey FOREIGN KEY (subscriber_id) REFERENCES public.users(id);
2827
2828
2829 --
2830 -- Name: changesets changesets_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2831 --
2832
2833 ALTER TABLE ONLY public.changesets
2834     ADD CONSTRAINT changesets_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
2835
2836
2837 --
2838 -- Name: current_node_tags current_node_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2839 --
2840
2841 ALTER TABLE ONLY public.current_node_tags
2842     ADD CONSTRAINT current_node_tags_id_fkey FOREIGN KEY (node_id) REFERENCES public.current_nodes(id);
2843
2844
2845 --
2846 -- Name: current_nodes current_nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2847 --
2848
2849 ALTER TABLE ONLY public.current_nodes
2850     ADD CONSTRAINT current_nodes_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
2851
2852
2853 --
2854 -- Name: current_relation_members current_relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2855 --
2856
2857 ALTER TABLE ONLY public.current_relation_members
2858     ADD CONSTRAINT current_relation_members_id_fkey FOREIGN KEY (relation_id) REFERENCES public.current_relations(id);
2859
2860
2861 --
2862 -- Name: current_relation_tags current_relation_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2863 --
2864
2865 ALTER TABLE ONLY public.current_relation_tags
2866     ADD CONSTRAINT current_relation_tags_id_fkey FOREIGN KEY (relation_id) REFERENCES public.current_relations(id);
2867
2868
2869 --
2870 -- Name: current_relations current_relations_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2871 --
2872
2873 ALTER TABLE ONLY public.current_relations
2874     ADD CONSTRAINT current_relations_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
2875
2876
2877 --
2878 -- Name: current_way_nodes current_way_nodes_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2879 --
2880
2881 ALTER TABLE ONLY public.current_way_nodes
2882     ADD CONSTRAINT current_way_nodes_id_fkey FOREIGN KEY (way_id) REFERENCES public.current_ways(id);
2883
2884
2885 --
2886 -- Name: current_way_nodes current_way_nodes_node_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2887 --
2888
2889 ALTER TABLE ONLY public.current_way_nodes
2890     ADD CONSTRAINT current_way_nodes_node_id_fkey FOREIGN KEY (node_id) REFERENCES public.current_nodes(id);
2891
2892
2893 --
2894 -- Name: current_way_tags current_way_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2895 --
2896
2897 ALTER TABLE ONLY public.current_way_tags
2898     ADD CONSTRAINT current_way_tags_id_fkey FOREIGN KEY (way_id) REFERENCES public.current_ways(id);
2899
2900
2901 --
2902 -- Name: current_ways current_ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2903 --
2904
2905 ALTER TABLE ONLY public.current_ways
2906     ADD CONSTRAINT current_ways_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
2907
2908
2909 --
2910 -- Name: diary_comments diary_comments_diary_entry_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2911 --
2912
2913 ALTER TABLE ONLY public.diary_comments
2914     ADD CONSTRAINT diary_comments_diary_entry_id_fkey FOREIGN KEY (diary_entry_id) REFERENCES public.diary_entries(id);
2915
2916
2917 --
2918 -- Name: diary_comments diary_comments_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2919 --
2920
2921 ALTER TABLE ONLY public.diary_comments
2922     ADD CONSTRAINT diary_comments_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
2923
2924
2925 --
2926 -- Name: diary_entries diary_entries_language_code_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2927 --
2928
2929 ALTER TABLE ONLY public.diary_entries
2930     ADD CONSTRAINT diary_entries_language_code_fkey FOREIGN KEY (language_code) REFERENCES public.languages(code);
2931
2932
2933 --
2934 -- Name: diary_entries diary_entries_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2935 --
2936
2937 ALTER TABLE ONLY public.diary_entries
2938     ADD CONSTRAINT diary_entries_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
2939
2940
2941 --
2942 -- Name: diary_entry_subscriptions diary_entry_subscriptions_diary_entry_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2943 --
2944
2945 ALTER TABLE ONLY public.diary_entry_subscriptions
2946     ADD CONSTRAINT diary_entry_subscriptions_diary_entry_id_fkey FOREIGN KEY (diary_entry_id) REFERENCES public.diary_entries(id);
2947
2948
2949 --
2950 -- Name: diary_entry_subscriptions diary_entry_subscriptions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2951 --
2952
2953 ALTER TABLE ONLY public.diary_entry_subscriptions
2954     ADD CONSTRAINT diary_entry_subscriptions_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
2955
2956
2957 --
2958 -- Name: oauth_access_grants fk_rails_330c32d8d9; Type: FK CONSTRAINT; Schema: public; Owner: -
2959 --
2960
2961 ALTER TABLE ONLY public.oauth_access_grants
2962     ADD CONSTRAINT fk_rails_330c32d8d9 FOREIGN KEY (resource_owner_id) REFERENCES public.users(id) NOT VALID;
2963
2964
2965 --
2966 -- Name: user_mutes fk_rails_591dad3359; Type: FK CONSTRAINT; Schema: public; Owner: -
2967 --
2968
2969 ALTER TABLE ONLY public.user_mutes
2970     ADD CONSTRAINT fk_rails_591dad3359 FOREIGN KEY (owner_id) REFERENCES public.users(id);
2971
2972
2973 --
2974 -- Name: oauth_access_tokens fk_rails_732cb83ab7; Type: FK CONSTRAINT; Schema: public; Owner: -
2975 --
2976
2977 ALTER TABLE ONLY public.oauth_access_tokens
2978     ADD CONSTRAINT fk_rails_732cb83ab7 FOREIGN KEY (application_id) REFERENCES public.oauth_applications(id) NOT VALID;
2979
2980
2981 --
2982 -- Name: oauth_openid_requests fk_rails_77114b3b09; Type: FK CONSTRAINT; Schema: public; Owner: -
2983 --
2984
2985 ALTER TABLE ONLY public.oauth_openid_requests
2986     ADD CONSTRAINT fk_rails_77114b3b09 FOREIGN KEY (access_grant_id) REFERENCES public.oauth_access_grants(id) ON DELETE CASCADE;
2987
2988
2989 --
2990 -- Name: active_storage_variant_records fk_rails_993965df05; Type: FK CONSTRAINT; Schema: public; Owner: -
2991 --
2992
2993 ALTER TABLE ONLY public.active_storage_variant_records
2994     ADD CONSTRAINT fk_rails_993965df05 FOREIGN KEY (blob_id) REFERENCES public.active_storage_blobs(id);
2995
2996
2997 --
2998 -- Name: oauth_access_grants fk_rails_b4b53e07b8; Type: FK CONSTRAINT; Schema: public; Owner: -
2999 --
3000
3001 ALTER TABLE ONLY public.oauth_access_grants
3002     ADD CONSTRAINT fk_rails_b4b53e07b8 FOREIGN KEY (application_id) REFERENCES public.oauth_applications(id) NOT VALID;
3003
3004
3005 --
3006 -- Name: active_storage_attachments fk_rails_c3b3935057; Type: FK CONSTRAINT; Schema: public; Owner: -
3007 --
3008
3009 ALTER TABLE ONLY public.active_storage_attachments
3010     ADD CONSTRAINT fk_rails_c3b3935057 FOREIGN KEY (blob_id) REFERENCES public.active_storage_blobs(id);
3011
3012
3013 --
3014 -- Name: oauth_applications fk_rails_cc886e315a; Type: FK CONSTRAINT; Schema: public; Owner: -
3015 --
3016
3017 ALTER TABLE ONLY public.oauth_applications
3018     ADD CONSTRAINT fk_rails_cc886e315a FOREIGN KEY (owner_id) REFERENCES public.users(id) NOT VALID;
3019
3020
3021 --
3022 -- Name: user_mutes fk_rails_e9dd4fb6c3; Type: FK CONSTRAINT; Schema: public; Owner: -
3023 --
3024
3025 ALTER TABLE ONLY public.user_mutes
3026     ADD CONSTRAINT fk_rails_e9dd4fb6c3 FOREIGN KEY (subject_id) REFERENCES public.users(id);
3027
3028
3029 --
3030 -- Name: oauth_access_tokens fk_rails_ee63f25419; Type: FK CONSTRAINT; Schema: public; Owner: -
3031 --
3032
3033 ALTER TABLE ONLY public.oauth_access_tokens
3034     ADD CONSTRAINT fk_rails_ee63f25419 FOREIGN KEY (resource_owner_id) REFERENCES public.users(id) NOT VALID;
3035
3036
3037 --
3038 -- Name: friends friends_friend_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3039 --
3040
3041 ALTER TABLE ONLY public.friends
3042     ADD CONSTRAINT friends_friend_user_id_fkey FOREIGN KEY (friend_user_id) REFERENCES public.users(id);
3043
3044
3045 --
3046 -- Name: friends friends_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3047 --
3048
3049 ALTER TABLE ONLY public.friends
3050     ADD CONSTRAINT friends_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3051
3052
3053 --
3054 -- Name: gps_points gps_points_gpx_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3055 --
3056
3057 ALTER TABLE ONLY public.gps_points
3058     ADD CONSTRAINT gps_points_gpx_id_fkey FOREIGN KEY (gpx_id) REFERENCES public.gpx_files(id);
3059
3060
3061 --
3062 -- Name: gpx_file_tags gpx_file_tags_gpx_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3063 --
3064
3065 ALTER TABLE ONLY public.gpx_file_tags
3066     ADD CONSTRAINT gpx_file_tags_gpx_id_fkey FOREIGN KEY (gpx_id) REFERENCES public.gpx_files(id);
3067
3068
3069 --
3070 -- Name: gpx_files gpx_files_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3071 --
3072
3073 ALTER TABLE ONLY public.gpx_files
3074     ADD CONSTRAINT gpx_files_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3075
3076
3077 --
3078 -- Name: issue_comments issue_comments_issue_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3079 --
3080
3081 ALTER TABLE ONLY public.issue_comments
3082     ADD CONSTRAINT issue_comments_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES public.issues(id);
3083
3084
3085 --
3086 -- Name: issue_comments issue_comments_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3087 --
3088
3089 ALTER TABLE ONLY public.issue_comments
3090     ADD CONSTRAINT issue_comments_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3091
3092
3093 --
3094 -- Name: issues issues_reported_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3095 --
3096
3097 ALTER TABLE ONLY public.issues
3098     ADD CONSTRAINT issues_reported_user_id_fkey FOREIGN KEY (reported_user_id) REFERENCES public.users(id);
3099
3100
3101 --
3102 -- Name: issues issues_resolved_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3103 --
3104
3105 ALTER TABLE ONLY public.issues
3106     ADD CONSTRAINT issues_resolved_by_fkey FOREIGN KEY (resolved_by) REFERENCES public.users(id);
3107
3108
3109 --
3110 -- Name: issues issues_updated_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3111 --
3112
3113 ALTER TABLE ONLY public.issues
3114     ADD CONSTRAINT issues_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES public.users(id);
3115
3116
3117 --
3118 -- Name: messages messages_from_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3119 --
3120
3121 ALTER TABLE ONLY public.messages
3122     ADD CONSTRAINT messages_from_user_id_fkey FOREIGN KEY (from_user_id) REFERENCES public.users(id);
3123
3124
3125 --
3126 -- Name: messages messages_to_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3127 --
3128
3129 ALTER TABLE ONLY public.messages
3130     ADD CONSTRAINT messages_to_user_id_fkey FOREIGN KEY (to_user_id) REFERENCES public.users(id);
3131
3132
3133 --
3134 -- Name: node_tags node_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3135 --
3136
3137 ALTER TABLE ONLY public.node_tags
3138     ADD CONSTRAINT node_tags_id_fkey FOREIGN KEY (node_id, version) REFERENCES public.nodes(node_id, version);
3139
3140
3141 --
3142 -- Name: nodes nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3143 --
3144
3145 ALTER TABLE ONLY public.nodes
3146     ADD CONSTRAINT nodes_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
3147
3148
3149 --
3150 -- Name: nodes nodes_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3151 --
3152
3153 ALTER TABLE ONLY public.nodes
3154     ADD CONSTRAINT nodes_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES public.redactions(id);
3155
3156
3157 --
3158 -- Name: note_comments note_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3159 --
3160
3161 ALTER TABLE ONLY public.note_comments
3162     ADD CONSTRAINT note_comments_author_id_fkey FOREIGN KEY (author_id) REFERENCES public.users(id);
3163
3164
3165 --
3166 -- Name: note_comments note_comments_note_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3167 --
3168
3169 ALTER TABLE ONLY public.note_comments
3170     ADD CONSTRAINT note_comments_note_id_fkey FOREIGN KEY (note_id) REFERENCES public.notes(id);
3171
3172
3173 --
3174 -- Name: redactions redactions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3175 --
3176
3177 ALTER TABLE ONLY public.redactions
3178     ADD CONSTRAINT redactions_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3179
3180
3181 --
3182 -- Name: relation_members relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3183 --
3184
3185 ALTER TABLE ONLY public.relation_members
3186     ADD CONSTRAINT relation_members_id_fkey FOREIGN KEY (relation_id, version) REFERENCES public.relations(relation_id, version);
3187
3188
3189 --
3190 -- Name: relation_tags relation_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3191 --
3192
3193 ALTER TABLE ONLY public.relation_tags
3194     ADD CONSTRAINT relation_tags_id_fkey FOREIGN KEY (relation_id, version) REFERENCES public.relations(relation_id, version);
3195
3196
3197 --
3198 -- Name: relations relations_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3199 --
3200
3201 ALTER TABLE ONLY public.relations
3202     ADD CONSTRAINT relations_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
3203
3204
3205 --
3206 -- Name: relations relations_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3207 --
3208
3209 ALTER TABLE ONLY public.relations
3210     ADD CONSTRAINT relations_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES public.redactions(id);
3211
3212
3213 --
3214 -- Name: reports reports_issue_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3215 --
3216
3217 ALTER TABLE ONLY public.reports
3218     ADD CONSTRAINT reports_issue_id_fkey FOREIGN KEY (issue_id) REFERENCES public.issues(id);
3219
3220
3221 --
3222 -- Name: reports reports_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3223 --
3224
3225 ALTER TABLE ONLY public.reports
3226     ADD CONSTRAINT reports_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3227
3228
3229 --
3230 -- Name: user_blocks user_blocks_moderator_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3231 --
3232
3233 ALTER TABLE ONLY public.user_blocks
3234     ADD CONSTRAINT user_blocks_moderator_id_fkey FOREIGN KEY (creator_id) REFERENCES public.users(id);
3235
3236
3237 --
3238 -- Name: user_blocks user_blocks_revoker_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3239 --
3240
3241 ALTER TABLE ONLY public.user_blocks
3242     ADD CONSTRAINT user_blocks_revoker_id_fkey FOREIGN KEY (revoker_id) REFERENCES public.users(id);
3243
3244
3245 --
3246 -- Name: user_blocks user_blocks_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3247 --
3248
3249 ALTER TABLE ONLY public.user_blocks
3250     ADD CONSTRAINT user_blocks_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3251
3252
3253 --
3254 -- Name: user_preferences user_preferences_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3255 --
3256
3257 ALTER TABLE ONLY public.user_preferences
3258     ADD CONSTRAINT user_preferences_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3259
3260
3261 --
3262 -- Name: user_roles user_roles_granter_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3263 --
3264
3265 ALTER TABLE ONLY public.user_roles
3266     ADD CONSTRAINT user_roles_granter_id_fkey FOREIGN KEY (granter_id) REFERENCES public.users(id);
3267
3268
3269 --
3270 -- Name: user_roles user_roles_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3271 --
3272
3273 ALTER TABLE ONLY public.user_roles
3274     ADD CONSTRAINT user_roles_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
3275
3276
3277 --
3278 -- Name: way_nodes way_nodes_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3279 --
3280
3281 ALTER TABLE ONLY public.way_nodes
3282     ADD CONSTRAINT way_nodes_id_fkey FOREIGN KEY (way_id, version) REFERENCES public.ways(way_id, version);
3283
3284
3285 --
3286 -- Name: way_tags way_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3287 --
3288
3289 ALTER TABLE ONLY public.way_tags
3290     ADD CONSTRAINT way_tags_id_fkey FOREIGN KEY (way_id, version) REFERENCES public.ways(way_id, version);
3291
3292
3293 --
3294 -- Name: ways ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3295 --
3296
3297 ALTER TABLE ONLY public.ways
3298     ADD CONSTRAINT ways_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES public.changesets(id);
3299
3300
3301 --
3302 -- Name: ways ways_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3303 --
3304
3305 ALTER TABLE ONLY public.ways
3306     ADD CONSTRAINT ways_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES public.redactions(id);
3307
3308
3309 --
3310 -- PostgreSQL database dump complete
3311 --
3312
3313 SET search_path TO "$user", public;
3314
3315 INSERT INTO "schema_migrations" (version) VALUES
3316 ('9'),
3317 ('8'),
3318 ('7'),
3319 ('6'),
3320 ('57'),
3321 ('56'),
3322 ('55'),
3323 ('54'),
3324 ('53'),
3325 ('52'),
3326 ('51'),
3327 ('50'),
3328 ('5'),
3329 ('49'),
3330 ('48'),
3331 ('47'),
3332 ('46'),
3333 ('45'),
3334 ('44'),
3335 ('43'),
3336 ('42'),
3337 ('41'),
3338 ('40'),
3339 ('4'),
3340 ('39'),
3341 ('38'),
3342 ('37'),
3343 ('36'),
3344 ('35'),
3345 ('34'),
3346 ('33'),
3347 ('32'),
3348 ('31'),
3349 ('30'),
3350 ('3'),
3351 ('29'),
3352 ('28'),
3353 ('27'),
3354 ('26'),
3355 ('25'),
3356 ('24'),
3357 ('23'),
3358 ('22'),
3359 ('21'),
3360 ('20240912181413'),
3361 ('20240910175616'),
3362 ('20240822121603'),
3363 ('20240813070506'),
3364 ('20240724194738'),
3365 ('20240618193051'),
3366 ('20240605134916'),
3367 ('20240405083825'),
3368 ('20240307181018'),
3369 ('20240307180830'),
3370 ('20240228205723'),
3371 ('20240117185445'),
3372 ('20231213182102'),
3373 ('20231206141457'),
3374 ('20231117170422'),
3375 ('20231101222146'),
3376 ('20231029151516'),
3377 ('20231010203028'),
3378 ('20231010201451'),
3379 ('20231010194809'),
3380 ('20231007141103'),
3381 ('20230830115220'),
3382 ('20230830115219'),
3383 ('20230825162137'),
3384 ('20230816135800'),
3385 ('20220223140543'),
3386 ('20220201183346'),
3387 ('20211216185316'),
3388 ('20210511104518'),
3389 ('20210510083028'),
3390 ('20210510083027'),
3391 ('20201214144017'),
3392 ('20201006220807'),
3393 ('20201006213836'),
3394 ('20201004105659'),
3395 ('20191120140058'),
3396 ('20190716173946'),
3397 ('20190702193519'),
3398 ('20190623093642'),
3399 ('20190518115041'),
3400 ('20181031113522'),
3401 ('20181020114000'),
3402 ('20180204153242'),
3403 ('20170222134109'),
3404 ('20161011010929'),
3405 ('20161002153425'),
3406 ('20160822153055'),
3407 ('20150818224516'),
3408 ('20150222101847'),
3409 ('20150111192335'),
3410 ('20150110152606'),
3411 ('20140519141742'),
3412 ('20140507110937'),
3413 ('20140210003018'),
3414 ('20140117185510'),
3415 ('20140115192822'),
3416 ('20131212124700'),
3417 ('20130328184137'),
3418 ('20121203124841'),
3419 ('20121202155309'),
3420 ('20121119165817'),
3421 ('20121012044047'),
3422 ('20121005195010'),
3423 ('20120808231205'),
3424 ('20120404205604'),
3425 ('20120328090602'),
3426 ('20120318201948'),
3427 ('20120219161649'),
3428 ('20120214210114'),
3429 ('20120208194454'),
3430 ('20120208122334'),
3431 ('20120123184321'),
3432 ('20111212183945'),
3433 ('20111116184519'),
3434 ('20110925112722'),
3435 ('20110521142405'),
3436 ('20110508145337'),
3437 ('20110322001319'),
3438 ('20101114011429'),
3439 ('20100910084426'),
3440 ('20100516124737'),
3441 ('20100513171259'),
3442 ('20'),
3443 ('2'),
3444 ('19'),
3445 ('18'),
3446 ('17'),
3447 ('16'),
3448 ('15'),
3449 ('14'),
3450 ('13'),
3451 ('12'),
3452 ('11'),
3453 ('10'),
3454 ('1');
3455