]> git.openstreetmap.org Git - rails.git/blob - db/structure.sql
Reenable the note search API
[rails.git] / db / structure.sql
1 --
2 -- PostgreSQL database dump
3 --
4
5 SET statement_timeout = 0;
6 SET lock_timeout = 0;
7 SET client_encoding = 'UTF8';
8 SET standard_conforming_strings = on;
9 SET check_function_bodies = false;
10 SET client_min_messages = warning;
11
12 --
13 -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
14 --
15
16 CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
17
18
19 --
20 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
21 --
22
23 COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
24
25
26 --
27 -- Name: btree_gist; Type: EXTENSION; Schema: -; Owner: -
28 --
29
30 CREATE EXTENSION IF NOT EXISTS btree_gist WITH SCHEMA public;
31
32
33 --
34 -- Name: EXTENSION btree_gist; Type: COMMENT; Schema: -; Owner: -
35 --
36
37 COMMENT ON EXTENSION btree_gist IS 'support for indexing common datatypes in GiST';
38
39
40 SET search_path = public, pg_catalog;
41
42 --
43 -- Name: format_enum; Type: TYPE; Schema: public; Owner: -
44 --
45
46 CREATE TYPE format_enum AS ENUM (
47     'html',
48     'markdown',
49     'text'
50 );
51
52
53 --
54 -- Name: gpx_visibility_enum; Type: TYPE; Schema: public; Owner: -
55 --
56
57 CREATE TYPE gpx_visibility_enum AS ENUM (
58     'private',
59     'public',
60     'trackable',
61     'identifiable'
62 );
63
64
65 --
66 -- Name: note_event_enum; Type: TYPE; Schema: public; Owner: -
67 --
68
69 CREATE TYPE note_event_enum AS ENUM (
70     'opened',
71     'closed',
72     'reopened',
73     'commented',
74     'hidden'
75 );
76
77
78 --
79 -- Name: note_status_enum; Type: TYPE; Schema: public; Owner: -
80 --
81
82 CREATE TYPE note_status_enum AS ENUM (
83     'open',
84     'closed',
85     'hidden'
86 );
87
88
89 --
90 -- Name: nwr_enum; Type: TYPE; Schema: public; Owner: -
91 --
92
93 CREATE TYPE nwr_enum AS ENUM (
94     'Node',
95     'Way',
96     'Relation'
97 );
98
99
100 --
101 -- Name: user_role_enum; Type: TYPE; Schema: public; Owner: -
102 --
103
104 CREATE TYPE user_role_enum AS ENUM (
105     'administrator',
106     'moderator'
107 );
108
109
110 --
111 -- Name: user_status_enum; Type: TYPE; Schema: public; Owner: -
112 --
113
114 CREATE TYPE user_status_enum AS ENUM (
115     'pending',
116     'active',
117     'confirmed',
118     'suspended',
119     'deleted'
120 );
121
122
123 --
124 -- Name: maptile_for_point(bigint, bigint, integer); Type: FUNCTION; Schema: public; Owner: -
125 --
126
127 CREATE FUNCTION maptile_for_point(bigint, bigint, integer) RETURNS integer
128     LANGUAGE c STRICT
129     AS '/srv/www/master.osm.compton.nu/db/functions/libpgosm.so', 'maptile_for_point';
130
131
132 --
133 -- Name: tile_for_point(integer, integer); Type: FUNCTION; Schema: public; Owner: -
134 --
135
136 CREATE FUNCTION tile_for_point(integer, integer) RETURNS bigint
137     LANGUAGE c STRICT
138     AS '/srv/www/master.osm.compton.nu/db/functions/libpgosm.so', 'tile_for_point';
139
140
141 --
142 -- Name: xid_to_int4(xid); Type: FUNCTION; Schema: public; Owner: -
143 --
144
145 CREATE FUNCTION xid_to_int4(xid) RETURNS integer
146     LANGUAGE c IMMUTABLE STRICT
147     AS '/srv/www/master.osm.compton.nu/db/functions/libpgosm.so', 'xid_to_int4';
148
149
150 SET default_tablespace = '';
151
152 SET default_with_oids = false;
153
154 --
155 -- Name: acls; Type: TABLE; Schema: public; Owner: -; Tablespace: 
156 --
157
158 CREATE TABLE acls (
159     id integer NOT NULL,
160     address inet,
161     k character varying(255) NOT NULL,
162     v character varying(255),
163     domain character varying(255)
164 );
165
166
167 --
168 -- Name: acls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
169 --
170
171 CREATE SEQUENCE acls_id_seq
172     START WITH 1
173     INCREMENT BY 1
174     NO MINVALUE
175     NO MAXVALUE
176     CACHE 1;
177
178
179 --
180 -- Name: acls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
181 --
182
183 ALTER SEQUENCE acls_id_seq OWNED BY acls.id;
184
185
186 --
187 -- Name: changeset_tags; Type: TABLE; Schema: public; Owner: -; Tablespace: 
188 --
189
190 CREATE TABLE changeset_tags (
191     changeset_id bigint NOT NULL,
192     k character varying(255) DEFAULT ''::character varying NOT NULL,
193     v character varying(255) DEFAULT ''::character varying NOT NULL
194 );
195
196
197 --
198 -- Name: changesets; Type: TABLE; Schema: public; Owner: -; Tablespace: 
199 --
200
201 CREATE TABLE changesets (
202     id bigint NOT NULL,
203     user_id bigint NOT NULL,
204     created_at timestamp without time zone NOT NULL,
205     min_lat integer,
206     max_lat integer,
207     min_lon integer,
208     max_lon integer,
209     closed_at timestamp without time zone NOT NULL,
210     num_changes integer DEFAULT 0 NOT NULL
211 );
212
213
214 --
215 -- Name: changesets_id_seq; Type: SEQUENCE; Schema: public; Owner: -
216 --
217
218 CREATE SEQUENCE changesets_id_seq
219     START WITH 1
220     INCREMENT BY 1
221     NO MINVALUE
222     NO MAXVALUE
223     CACHE 1;
224
225
226 --
227 -- Name: changesets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
228 --
229
230 ALTER SEQUENCE changesets_id_seq OWNED BY changesets.id;
231
232
233 --
234 -- Name: client_applications; Type: TABLE; Schema: public; Owner: -; Tablespace: 
235 --
236
237 CREATE TABLE client_applications (
238     id integer NOT NULL,
239     name character varying(255),
240     url character varying(255),
241     support_url character varying(255),
242     callback_url character varying(255),
243     key character varying(50),
244     secret character varying(50),
245     user_id integer,
246     created_at timestamp without time zone,
247     updated_at timestamp without time zone,
248     allow_read_prefs boolean DEFAULT false NOT NULL,
249     allow_write_prefs boolean DEFAULT false NOT NULL,
250     allow_write_diary boolean DEFAULT false NOT NULL,
251     allow_write_api boolean DEFAULT false NOT NULL,
252     allow_read_gpx boolean DEFAULT false NOT NULL,
253     allow_write_gpx boolean DEFAULT false NOT NULL,
254     allow_write_notes boolean DEFAULT false NOT NULL
255 );
256
257
258 --
259 -- Name: client_applications_id_seq; Type: SEQUENCE; Schema: public; Owner: -
260 --
261
262 CREATE SEQUENCE client_applications_id_seq
263     START WITH 1
264     INCREMENT BY 1
265     NO MINVALUE
266     NO MAXVALUE
267     CACHE 1;
268
269
270 --
271 -- Name: client_applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
272 --
273
274 ALTER SEQUENCE client_applications_id_seq OWNED BY client_applications.id;
275
276
277 --
278 -- Name: countries; Type: TABLE; Schema: public; Owner: -; Tablespace: 
279 --
280
281 CREATE TABLE countries (
282     id integer NOT NULL,
283     code character varying(2) NOT NULL,
284     min_lat double precision NOT NULL,
285     max_lat double precision NOT NULL,
286     min_lon double precision NOT NULL,
287     max_lon double precision NOT NULL
288 );
289
290
291 --
292 -- Name: countries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
293 --
294
295 CREATE SEQUENCE countries_id_seq
296     START WITH 1
297     INCREMENT BY 1
298     NO MINVALUE
299     NO MAXVALUE
300     CACHE 1;
301
302
303 --
304 -- Name: countries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
305 --
306
307 ALTER SEQUENCE countries_id_seq OWNED BY countries.id;
308
309
310 --
311 -- Name: current_node_tags; Type: TABLE; Schema: public; Owner: -; Tablespace: 
312 --
313
314 CREATE TABLE current_node_tags (
315     node_id bigint NOT NULL,
316     k character varying(255) DEFAULT ''::character varying NOT NULL,
317     v character varying(255) DEFAULT ''::character varying NOT NULL
318 );
319
320
321 --
322 -- Name: current_nodes; Type: TABLE; Schema: public; Owner: -; Tablespace: 
323 --
324
325 CREATE TABLE current_nodes (
326     id bigint NOT NULL,
327     latitude integer NOT NULL,
328     longitude integer NOT NULL,
329     changeset_id bigint NOT NULL,
330     visible boolean NOT NULL,
331     "timestamp" timestamp without time zone NOT NULL,
332     tile bigint NOT NULL,
333     version bigint NOT NULL
334 );
335
336
337 --
338 -- Name: current_nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
339 --
340
341 CREATE SEQUENCE current_nodes_id_seq
342     START WITH 1
343     INCREMENT BY 1
344     NO MINVALUE
345     NO MAXVALUE
346     CACHE 1;
347
348
349 --
350 -- Name: current_nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
351 --
352
353 ALTER SEQUENCE current_nodes_id_seq OWNED BY current_nodes.id;
354
355
356 --
357 -- Name: current_relation_members; Type: TABLE; Schema: public; Owner: -; Tablespace: 
358 --
359
360 CREATE TABLE current_relation_members (
361     relation_id bigint NOT NULL,
362     member_type nwr_enum NOT NULL,
363     member_id bigint NOT NULL,
364     member_role character varying(255) NOT NULL,
365     sequence_id integer DEFAULT 0 NOT NULL
366 );
367
368
369 --
370 -- Name: current_relation_tags; Type: TABLE; Schema: public; Owner: -; Tablespace: 
371 --
372
373 CREATE TABLE current_relation_tags (
374     relation_id bigint NOT NULL,
375     k character varying(255) DEFAULT ''::character varying NOT NULL,
376     v character varying(255) DEFAULT ''::character varying NOT NULL
377 );
378
379
380 --
381 -- Name: current_relations; Type: TABLE; Schema: public; Owner: -; Tablespace: 
382 --
383
384 CREATE TABLE current_relations (
385     id bigint NOT NULL,
386     changeset_id bigint NOT NULL,
387     "timestamp" timestamp without time zone NOT NULL,
388     visible boolean NOT NULL,
389     version bigint NOT NULL
390 );
391
392
393 --
394 -- Name: current_relations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
395 --
396
397 CREATE SEQUENCE current_relations_id_seq
398     START WITH 1
399     INCREMENT BY 1
400     NO MINVALUE
401     NO MAXVALUE
402     CACHE 1;
403
404
405 --
406 -- Name: current_relations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
407 --
408
409 ALTER SEQUENCE current_relations_id_seq OWNED BY current_relations.id;
410
411
412 --
413 -- Name: current_way_nodes; Type: TABLE; Schema: public; Owner: -; Tablespace: 
414 --
415
416 CREATE TABLE current_way_nodes (
417     way_id bigint NOT NULL,
418     node_id bigint NOT NULL,
419     sequence_id bigint NOT NULL
420 );
421
422
423 --
424 -- Name: current_way_tags; Type: TABLE; Schema: public; Owner: -; Tablespace: 
425 --
426
427 CREATE TABLE current_way_tags (
428     way_id bigint NOT NULL,
429     k character varying(255) DEFAULT ''::character varying NOT NULL,
430     v character varying(255) DEFAULT ''::character varying NOT NULL
431 );
432
433
434 --
435 -- Name: current_ways; Type: TABLE; Schema: public; Owner: -; Tablespace: 
436 --
437
438 CREATE TABLE current_ways (
439     id bigint NOT NULL,
440     changeset_id bigint NOT NULL,
441     "timestamp" timestamp without time zone NOT NULL,
442     visible boolean NOT NULL,
443     version bigint NOT NULL
444 );
445
446
447 --
448 -- Name: current_ways_id_seq; Type: SEQUENCE; Schema: public; Owner: -
449 --
450
451 CREATE SEQUENCE current_ways_id_seq
452     START WITH 1
453     INCREMENT BY 1
454     NO MINVALUE
455     NO MAXVALUE
456     CACHE 1;
457
458
459 --
460 -- Name: current_ways_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
461 --
462
463 ALTER SEQUENCE current_ways_id_seq OWNED BY current_ways.id;
464
465
466 --
467 -- Name: diary_comments; Type: TABLE; Schema: public; Owner: -; Tablespace: 
468 --
469
470 CREATE TABLE diary_comments (
471     id bigint NOT NULL,
472     diary_entry_id bigint NOT NULL,
473     user_id bigint NOT NULL,
474     body text NOT NULL,
475     created_at timestamp without time zone NOT NULL,
476     updated_at timestamp without time zone NOT NULL,
477     visible boolean DEFAULT true NOT NULL,
478     body_format format_enum DEFAULT 'html'::format_enum NOT NULL
479 );
480
481
482 --
483 -- Name: diary_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
484 --
485
486 CREATE SEQUENCE diary_comments_id_seq
487     START WITH 1
488     INCREMENT BY 1
489     NO MINVALUE
490     NO MAXVALUE
491     CACHE 1;
492
493
494 --
495 -- Name: diary_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
496 --
497
498 ALTER SEQUENCE diary_comments_id_seq OWNED BY diary_comments.id;
499
500
501 --
502 -- Name: diary_entries; Type: TABLE; Schema: public; Owner: -; Tablespace: 
503 --
504
505 CREATE TABLE diary_entries (
506     id bigint NOT NULL,
507     user_id bigint NOT NULL,
508     title character varying(255) NOT NULL,
509     body text NOT NULL,
510     created_at timestamp without time zone NOT NULL,
511     updated_at timestamp without time zone NOT NULL,
512     latitude double precision,
513     longitude double precision,
514     language_code character varying(255) DEFAULT 'en'::character varying NOT NULL,
515     visible boolean DEFAULT true NOT NULL,
516     body_format format_enum DEFAULT 'html'::format_enum NOT NULL
517 );
518
519
520 --
521 -- Name: diary_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
522 --
523
524 CREATE SEQUENCE diary_entries_id_seq
525     START WITH 1
526     INCREMENT BY 1
527     NO MINVALUE
528     NO MAXVALUE
529     CACHE 1;
530
531
532 --
533 -- Name: diary_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
534 --
535
536 ALTER SEQUENCE diary_entries_id_seq OWNED BY diary_entries.id;
537
538
539 --
540 -- Name: friends; Type: TABLE; Schema: public; Owner: -; Tablespace: 
541 --
542
543 CREATE TABLE friends (
544     id bigint NOT NULL,
545     user_id bigint NOT NULL,
546     friend_user_id bigint NOT NULL
547 );
548
549
550 --
551 -- Name: friends_id_seq; Type: SEQUENCE; Schema: public; Owner: -
552 --
553
554 CREATE SEQUENCE friends_id_seq
555     START WITH 1
556     INCREMENT BY 1
557     NO MINVALUE
558     NO MAXVALUE
559     CACHE 1;
560
561
562 --
563 -- Name: friends_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
564 --
565
566 ALTER SEQUENCE friends_id_seq OWNED BY friends.id;
567
568
569 --
570 -- Name: gps_points; Type: TABLE; Schema: public; Owner: -; Tablespace: 
571 --
572
573 CREATE TABLE gps_points (
574     altitude double precision,
575     trackid integer NOT NULL,
576     latitude integer NOT NULL,
577     longitude integer NOT NULL,
578     gpx_id bigint NOT NULL,
579     "timestamp" timestamp without time zone,
580     tile bigint
581 );
582
583
584 --
585 -- Name: gpx_file_tags; Type: TABLE; Schema: public; Owner: -; Tablespace: 
586 --
587
588 CREATE TABLE gpx_file_tags (
589     gpx_id bigint DEFAULT 0 NOT NULL,
590     tag character varying(255) NOT NULL,
591     id bigint NOT NULL
592 );
593
594
595 --
596 -- Name: gpx_file_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: -
597 --
598
599 CREATE SEQUENCE gpx_file_tags_id_seq
600     START WITH 1
601     INCREMENT BY 1
602     NO MINVALUE
603     NO MAXVALUE
604     CACHE 1;
605
606
607 --
608 -- Name: gpx_file_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
609 --
610
611 ALTER SEQUENCE gpx_file_tags_id_seq OWNED BY gpx_file_tags.id;
612
613
614 --
615 -- Name: gpx_files; Type: TABLE; Schema: public; Owner: -; Tablespace: 
616 --
617
618 CREATE TABLE gpx_files (
619     id bigint NOT NULL,
620     user_id bigint NOT NULL,
621     visible boolean DEFAULT true NOT NULL,
622     name character varying(255) DEFAULT ''::character varying NOT NULL,
623     size bigint,
624     latitude double precision,
625     longitude double precision,
626     "timestamp" timestamp without time zone NOT NULL,
627     description character varying(255) DEFAULT ''::character varying NOT NULL,
628     inserted boolean NOT NULL,
629     visibility gpx_visibility_enum DEFAULT 'public'::gpx_visibility_enum NOT NULL
630 );
631
632
633 --
634 -- Name: gpx_files_id_seq; Type: SEQUENCE; Schema: public; Owner: -
635 --
636
637 CREATE SEQUENCE gpx_files_id_seq
638     START WITH 1
639     INCREMENT BY 1
640     NO MINVALUE
641     NO MAXVALUE
642     CACHE 1;
643
644
645 --
646 -- Name: gpx_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
647 --
648
649 ALTER SEQUENCE gpx_files_id_seq OWNED BY gpx_files.id;
650
651
652 --
653 -- Name: languages; Type: TABLE; Schema: public; Owner: -; Tablespace: 
654 --
655
656 CREATE TABLE languages (
657     code character varying(255) NOT NULL,
658     english_name character varying(255) NOT NULL,
659     native_name character varying(255)
660 );
661
662
663 --
664 -- Name: messages; Type: TABLE; Schema: public; Owner: -; Tablespace: 
665 --
666
667 CREATE TABLE messages (
668     id bigint NOT NULL,
669     from_user_id bigint NOT NULL,
670     title character varying(255) NOT NULL,
671     body text NOT NULL,
672     sent_on timestamp without time zone NOT NULL,
673     message_read boolean DEFAULT false NOT NULL,
674     to_user_id bigint NOT NULL,
675     to_user_visible boolean DEFAULT true NOT NULL,
676     from_user_visible boolean DEFAULT true NOT NULL,
677     body_format format_enum DEFAULT 'html'::format_enum NOT NULL
678 );
679
680
681 --
682 -- Name: messages_id_seq; Type: SEQUENCE; Schema: public; Owner: -
683 --
684
685 CREATE SEQUENCE messages_id_seq
686     START WITH 1
687     INCREMENT BY 1
688     NO MINVALUE
689     NO MAXVALUE
690     CACHE 1;
691
692
693 --
694 -- Name: messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
695 --
696
697 ALTER SEQUENCE messages_id_seq OWNED BY messages.id;
698
699
700 --
701 -- Name: node_tags; Type: TABLE; Schema: public; Owner: -; Tablespace: 
702 --
703
704 CREATE TABLE node_tags (
705     node_id bigint NOT NULL,
706     version bigint NOT NULL,
707     k character varying(255) DEFAULT ''::character varying NOT NULL,
708     v character varying(255) DEFAULT ''::character varying NOT NULL
709 );
710
711
712 --
713 -- Name: nodes; Type: TABLE; Schema: public; Owner: -; Tablespace: 
714 --
715
716 CREATE TABLE nodes (
717     node_id bigint NOT NULL,
718     latitude integer NOT NULL,
719     longitude integer NOT NULL,
720     changeset_id bigint NOT NULL,
721     visible boolean NOT NULL,
722     "timestamp" timestamp without time zone NOT NULL,
723     tile bigint NOT NULL,
724     version bigint NOT NULL,
725     redaction_id integer
726 );
727
728
729 --
730 -- Name: note_comments; Type: TABLE; Schema: public; Owner: -; Tablespace: 
731 --
732
733 CREATE TABLE note_comments (
734     id integer NOT NULL,
735     note_id bigint NOT NULL,
736     visible boolean NOT NULL,
737     created_at timestamp without time zone NOT NULL,
738     author_ip inet,
739     author_id bigint,
740     body text,
741     event note_event_enum
742 );
743
744
745 --
746 -- Name: note_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
747 --
748
749 CREATE SEQUENCE note_comments_id_seq
750     START WITH 1
751     INCREMENT BY 1
752     NO MINVALUE
753     NO MAXVALUE
754     CACHE 1;
755
756
757 --
758 -- Name: note_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
759 --
760
761 ALTER SEQUENCE note_comments_id_seq OWNED BY note_comments.id;
762
763
764 --
765 -- Name: notes; Type: TABLE; Schema: public; Owner: -; Tablespace: 
766 --
767
768 CREATE TABLE notes (
769     id integer NOT NULL,
770     latitude integer NOT NULL,
771     longitude integer NOT NULL,
772     tile bigint NOT NULL,
773     updated_at timestamp without time zone NOT NULL,
774     created_at timestamp without time zone NOT NULL,
775     status note_status_enum NOT NULL,
776     closed_at timestamp without time zone
777 );
778
779
780 --
781 -- Name: notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
782 --
783
784 CREATE SEQUENCE notes_id_seq
785     START WITH 1
786     INCREMENT BY 1
787     NO MINVALUE
788     NO MAXVALUE
789     CACHE 1;
790
791
792 --
793 -- Name: notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
794 --
795
796 ALTER SEQUENCE notes_id_seq OWNED BY notes.id;
797
798
799 --
800 -- Name: oauth_nonces; Type: TABLE; Schema: public; Owner: -; Tablespace: 
801 --
802
803 CREATE TABLE oauth_nonces (
804     id integer NOT NULL,
805     nonce character varying(255),
806     "timestamp" integer,
807     created_at timestamp without time zone,
808     updated_at timestamp without time zone
809 );
810
811
812 --
813 -- Name: oauth_nonces_id_seq; Type: SEQUENCE; Schema: public; Owner: -
814 --
815
816 CREATE SEQUENCE oauth_nonces_id_seq
817     START WITH 1
818     INCREMENT BY 1
819     NO MINVALUE
820     NO MAXVALUE
821     CACHE 1;
822
823
824 --
825 -- Name: oauth_nonces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
826 --
827
828 ALTER SEQUENCE oauth_nonces_id_seq OWNED BY oauth_nonces.id;
829
830
831 --
832 -- Name: oauth_tokens; Type: TABLE; Schema: public; Owner: -; Tablespace: 
833 --
834
835 CREATE TABLE oauth_tokens (
836     id integer NOT NULL,
837     user_id integer,
838     type character varying(20),
839     client_application_id integer,
840     token character varying(50),
841     secret character varying(50),
842     authorized_at timestamp without time zone,
843     invalidated_at timestamp without time zone,
844     created_at timestamp without time zone,
845     updated_at timestamp without time zone,
846     allow_read_prefs boolean DEFAULT false NOT NULL,
847     allow_write_prefs boolean DEFAULT false NOT NULL,
848     allow_write_diary boolean DEFAULT false NOT NULL,
849     allow_write_api boolean DEFAULT false NOT NULL,
850     allow_read_gpx boolean DEFAULT false NOT NULL,
851     allow_write_gpx boolean DEFAULT false NOT NULL,
852     callback_url character varying(255),
853     verifier character varying(20),
854     scope character varying(255),
855     valid_to timestamp without time zone,
856     allow_write_notes boolean DEFAULT false NOT NULL
857 );
858
859
860 --
861 -- Name: oauth_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
862 --
863
864 CREATE SEQUENCE oauth_tokens_id_seq
865     START WITH 1
866     INCREMENT BY 1
867     NO MINVALUE
868     NO MAXVALUE
869     CACHE 1;
870
871
872 --
873 -- Name: oauth_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
874 --
875
876 ALTER SEQUENCE oauth_tokens_id_seq OWNED BY oauth_tokens.id;
877
878
879 --
880 -- Name: redactions; Type: TABLE; Schema: public; Owner: -; Tablespace: 
881 --
882
883 CREATE TABLE redactions (
884     id integer NOT NULL,
885     title character varying(255),
886     description text,
887     created_at timestamp without time zone NOT NULL,
888     updated_at timestamp without time zone NOT NULL,
889     user_id bigint NOT NULL,
890     description_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
891 );
892
893
894 --
895 -- Name: redactions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
896 --
897
898 CREATE SEQUENCE redactions_id_seq
899     START WITH 1
900     INCREMENT BY 1
901     NO MINVALUE
902     NO MAXVALUE
903     CACHE 1;
904
905
906 --
907 -- Name: redactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
908 --
909
910 ALTER SEQUENCE redactions_id_seq OWNED BY redactions.id;
911
912
913 --
914 -- Name: relation_members; Type: TABLE; Schema: public; Owner: -; Tablespace: 
915 --
916
917 CREATE TABLE relation_members (
918     relation_id bigint DEFAULT 0 NOT NULL,
919     member_type nwr_enum NOT NULL,
920     member_id bigint NOT NULL,
921     member_role character varying(255) NOT NULL,
922     version bigint DEFAULT 0 NOT NULL,
923     sequence_id integer DEFAULT 0 NOT NULL
924 );
925
926
927 --
928 -- Name: relation_tags; Type: TABLE; Schema: public; Owner: -; Tablespace: 
929 --
930
931 CREATE TABLE relation_tags (
932     relation_id bigint DEFAULT 0 NOT NULL,
933     k character varying(255) DEFAULT ''::character varying NOT NULL,
934     v character varying(255) DEFAULT ''::character varying NOT NULL,
935     version bigint NOT NULL
936 );
937
938
939 --
940 -- Name: relations; Type: TABLE; Schema: public; Owner: -; Tablespace: 
941 --
942
943 CREATE TABLE relations (
944     relation_id bigint DEFAULT 0 NOT NULL,
945     changeset_id bigint NOT NULL,
946     "timestamp" timestamp without time zone NOT NULL,
947     version bigint NOT NULL,
948     visible boolean DEFAULT true NOT NULL,
949     redaction_id integer
950 );
951
952
953 --
954 -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace: 
955 --
956
957 CREATE TABLE schema_migrations (
958     version character varying(255) NOT NULL
959 );
960
961
962 --
963 -- Name: user_blocks; Type: TABLE; Schema: public; Owner: -; Tablespace: 
964 --
965
966 CREATE TABLE user_blocks (
967     id integer NOT NULL,
968     user_id bigint NOT NULL,
969     creator_id bigint NOT NULL,
970     reason text NOT NULL,
971     ends_at timestamp without time zone NOT NULL,
972     needs_view boolean DEFAULT false NOT NULL,
973     revoker_id bigint,
974     created_at timestamp without time zone,
975     updated_at timestamp without time zone,
976     reason_format format_enum DEFAULT 'html'::format_enum NOT NULL
977 );
978
979
980 --
981 -- Name: user_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: -
982 --
983
984 CREATE SEQUENCE user_blocks_id_seq
985     START WITH 1
986     INCREMENT BY 1
987     NO MINVALUE
988     NO MAXVALUE
989     CACHE 1;
990
991
992 --
993 -- Name: user_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
994 --
995
996 ALTER SEQUENCE user_blocks_id_seq OWNED BY user_blocks.id;
997
998
999 --
1000 -- Name: user_preferences; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1001 --
1002
1003 CREATE TABLE user_preferences (
1004     user_id bigint NOT NULL,
1005     k character varying(255) NOT NULL,
1006     v character varying(255) NOT NULL
1007 );
1008
1009
1010 --
1011 -- Name: user_roles; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1012 --
1013
1014 CREATE TABLE user_roles (
1015     id integer NOT NULL,
1016     user_id bigint NOT NULL,
1017     created_at timestamp without time zone,
1018     updated_at timestamp without time zone,
1019     role user_role_enum NOT NULL,
1020     granter_id bigint NOT NULL
1021 );
1022
1023
1024 --
1025 -- Name: user_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1026 --
1027
1028 CREATE SEQUENCE user_roles_id_seq
1029     START WITH 1
1030     INCREMENT BY 1
1031     NO MINVALUE
1032     NO MAXVALUE
1033     CACHE 1;
1034
1035
1036 --
1037 -- Name: user_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1038 --
1039
1040 ALTER SEQUENCE user_roles_id_seq OWNED BY user_roles.id;
1041
1042
1043 --
1044 -- Name: user_tokens; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1045 --
1046
1047 CREATE TABLE user_tokens (
1048     id bigint NOT NULL,
1049     user_id bigint NOT NULL,
1050     token character varying(255) NOT NULL,
1051     expiry timestamp without time zone NOT NULL,
1052     referer text
1053 );
1054
1055
1056 --
1057 -- Name: user_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1058 --
1059
1060 CREATE SEQUENCE user_tokens_id_seq
1061     START WITH 1
1062     INCREMENT BY 1
1063     NO MINVALUE
1064     NO MAXVALUE
1065     CACHE 1;
1066
1067
1068 --
1069 -- Name: user_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1070 --
1071
1072 ALTER SEQUENCE user_tokens_id_seq OWNED BY user_tokens.id;
1073
1074
1075 --
1076 -- Name: users; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1077 --
1078
1079 CREATE TABLE users (
1080     email character varying(255) NOT NULL,
1081     id bigint NOT NULL,
1082     pass_crypt character varying(255) NOT NULL,
1083     creation_time timestamp without time zone NOT NULL,
1084     display_name character varying(255) DEFAULT ''::character varying NOT NULL,
1085     data_public boolean DEFAULT false NOT NULL,
1086     description text DEFAULT ''::text NOT NULL,
1087     home_lat double precision,
1088     home_lon double precision,
1089     home_zoom smallint DEFAULT 3,
1090     nearby integer DEFAULT 50,
1091     pass_salt character varying(255),
1092     image_file_name text,
1093     email_valid boolean DEFAULT false NOT NULL,
1094     new_email character varying(255),
1095     creation_ip character varying(255),
1096     languages character varying(255),
1097     status user_status_enum DEFAULT 'pending'::user_status_enum NOT NULL,
1098     terms_agreed timestamp without time zone,
1099     consider_pd boolean DEFAULT false NOT NULL,
1100     preferred_editor character varying(255),
1101     terms_seen boolean DEFAULT false NOT NULL,
1102     openid_url character varying(255),
1103     description_format format_enum DEFAULT 'html'::format_enum NOT NULL,
1104     image_fingerprint character varying(255),
1105     changesets_count integer DEFAULT 0 NOT NULL,
1106     traces_count integer DEFAULT 0 NOT NULL,
1107     diary_entries_count integer DEFAULT 0 NOT NULL,
1108     image_use_gravatar boolean DEFAULT true NOT NULL
1109 );
1110
1111
1112 --
1113 -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1114 --
1115
1116 CREATE SEQUENCE users_id_seq
1117     START WITH 1
1118     INCREMENT BY 1
1119     NO MINVALUE
1120     NO MAXVALUE
1121     CACHE 1;
1122
1123
1124 --
1125 -- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1126 --
1127
1128 ALTER SEQUENCE users_id_seq OWNED BY users.id;
1129
1130
1131 --
1132 -- Name: way_nodes; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1133 --
1134
1135 CREATE TABLE way_nodes (
1136     way_id bigint NOT NULL,
1137     node_id bigint NOT NULL,
1138     version bigint NOT NULL,
1139     sequence_id bigint NOT NULL
1140 );
1141
1142
1143 --
1144 -- Name: way_tags; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1145 --
1146
1147 CREATE TABLE way_tags (
1148     way_id bigint DEFAULT 0 NOT NULL,
1149     k character varying(255) NOT NULL,
1150     v character varying(255) NOT NULL,
1151     version bigint NOT NULL
1152 );
1153
1154
1155 --
1156 -- Name: ways; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1157 --
1158
1159 CREATE TABLE ways (
1160     way_id bigint DEFAULT 0 NOT NULL,
1161     changeset_id bigint NOT NULL,
1162     "timestamp" timestamp without time zone NOT NULL,
1163     version bigint NOT NULL,
1164     visible boolean DEFAULT true NOT NULL,
1165     redaction_id integer
1166 );
1167
1168
1169 --
1170 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1171 --
1172
1173 ALTER TABLE ONLY acls ALTER COLUMN id SET DEFAULT nextval('acls_id_seq'::regclass);
1174
1175
1176 --
1177 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1178 --
1179
1180 ALTER TABLE ONLY changesets ALTER COLUMN id SET DEFAULT nextval('changesets_id_seq'::regclass);
1181
1182
1183 --
1184 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1185 --
1186
1187 ALTER TABLE ONLY client_applications ALTER COLUMN id SET DEFAULT nextval('client_applications_id_seq'::regclass);
1188
1189
1190 --
1191 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1192 --
1193
1194 ALTER TABLE ONLY countries ALTER COLUMN id SET DEFAULT nextval('countries_id_seq'::regclass);
1195
1196
1197 --
1198 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1199 --
1200
1201 ALTER TABLE ONLY current_nodes ALTER COLUMN id SET DEFAULT nextval('current_nodes_id_seq'::regclass);
1202
1203
1204 --
1205 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1206 --
1207
1208 ALTER TABLE ONLY current_relations ALTER COLUMN id SET DEFAULT nextval('current_relations_id_seq'::regclass);
1209
1210
1211 --
1212 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1213 --
1214
1215 ALTER TABLE ONLY current_ways ALTER COLUMN id SET DEFAULT nextval('current_ways_id_seq'::regclass);
1216
1217
1218 --
1219 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1220 --
1221
1222 ALTER TABLE ONLY diary_comments ALTER COLUMN id SET DEFAULT nextval('diary_comments_id_seq'::regclass);
1223
1224
1225 --
1226 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1227 --
1228
1229 ALTER TABLE ONLY diary_entries ALTER COLUMN id SET DEFAULT nextval('diary_entries_id_seq'::regclass);
1230
1231
1232 --
1233 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1234 --
1235
1236 ALTER TABLE ONLY friends ALTER COLUMN id SET DEFAULT nextval('friends_id_seq'::regclass);
1237
1238
1239 --
1240 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1241 --
1242
1243 ALTER TABLE ONLY gpx_file_tags ALTER COLUMN id SET DEFAULT nextval('gpx_file_tags_id_seq'::regclass);
1244
1245
1246 --
1247 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1248 --
1249
1250 ALTER TABLE ONLY gpx_files ALTER COLUMN id SET DEFAULT nextval('gpx_files_id_seq'::regclass);
1251
1252
1253 --
1254 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1255 --
1256
1257 ALTER TABLE ONLY messages ALTER COLUMN id SET DEFAULT nextval('messages_id_seq'::regclass);
1258
1259
1260 --
1261 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1262 --
1263
1264 ALTER TABLE ONLY note_comments ALTER COLUMN id SET DEFAULT nextval('note_comments_id_seq'::regclass);
1265
1266
1267 --
1268 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1269 --
1270
1271 ALTER TABLE ONLY notes ALTER COLUMN id SET DEFAULT nextval('notes_id_seq'::regclass);
1272
1273
1274 --
1275 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1276 --
1277
1278 ALTER TABLE ONLY oauth_nonces ALTER COLUMN id SET DEFAULT nextval('oauth_nonces_id_seq'::regclass);
1279
1280
1281 --
1282 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1283 --
1284
1285 ALTER TABLE ONLY oauth_tokens ALTER COLUMN id SET DEFAULT nextval('oauth_tokens_id_seq'::regclass);
1286
1287
1288 --
1289 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1290 --
1291
1292 ALTER TABLE ONLY redactions ALTER COLUMN id SET DEFAULT nextval('redactions_id_seq'::regclass);
1293
1294
1295 --
1296 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1297 --
1298
1299 ALTER TABLE ONLY user_blocks ALTER COLUMN id SET DEFAULT nextval('user_blocks_id_seq'::regclass);
1300
1301
1302 --
1303 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1304 --
1305
1306 ALTER TABLE ONLY user_roles ALTER COLUMN id SET DEFAULT nextval('user_roles_id_seq'::regclass);
1307
1308
1309 --
1310 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1311 --
1312
1313 ALTER TABLE ONLY user_tokens ALTER COLUMN id SET DEFAULT nextval('user_tokens_id_seq'::regclass);
1314
1315
1316 --
1317 -- Name: id; Type: DEFAULT; Schema: public; Owner: -
1318 --
1319
1320 ALTER TABLE ONLY users ALTER COLUMN id SET DEFAULT nextval('users_id_seq'::regclass);
1321
1322
1323 --
1324 -- Name: acls_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1325 --
1326
1327 ALTER TABLE ONLY acls
1328     ADD CONSTRAINT acls_pkey PRIMARY KEY (id);
1329
1330
1331 --
1332 -- Name: changesets_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1333 --
1334
1335 ALTER TABLE ONLY changesets
1336     ADD CONSTRAINT changesets_pkey PRIMARY KEY (id);
1337
1338
1339 --
1340 -- Name: client_applications_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1341 --
1342
1343 ALTER TABLE ONLY client_applications
1344     ADD CONSTRAINT client_applications_pkey PRIMARY KEY (id);
1345
1346
1347 --
1348 -- Name: countries_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1349 --
1350
1351 ALTER TABLE ONLY countries
1352     ADD CONSTRAINT countries_pkey PRIMARY KEY (id);
1353
1354
1355 --
1356 -- Name: current_node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1357 --
1358
1359 ALTER TABLE ONLY current_node_tags
1360     ADD CONSTRAINT current_node_tags_pkey PRIMARY KEY (node_id, k);
1361
1362
1363 --
1364 -- Name: current_nodes_pkey1; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1365 --
1366
1367 ALTER TABLE ONLY current_nodes
1368     ADD CONSTRAINT current_nodes_pkey1 PRIMARY KEY (id);
1369
1370
1371 --
1372 -- Name: current_relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1373 --
1374
1375 ALTER TABLE ONLY current_relation_members
1376     ADD CONSTRAINT current_relation_members_pkey PRIMARY KEY (relation_id, member_type, member_id, member_role, sequence_id);
1377
1378
1379 --
1380 -- Name: current_relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1381 --
1382
1383 ALTER TABLE ONLY current_relation_tags
1384     ADD CONSTRAINT current_relation_tags_pkey PRIMARY KEY (relation_id, k);
1385
1386
1387 --
1388 -- Name: current_relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1389 --
1390
1391 ALTER TABLE ONLY current_relations
1392     ADD CONSTRAINT current_relations_pkey PRIMARY KEY (id);
1393
1394
1395 --
1396 -- Name: current_way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1397 --
1398
1399 ALTER TABLE ONLY current_way_nodes
1400     ADD CONSTRAINT current_way_nodes_pkey PRIMARY KEY (way_id, sequence_id);
1401
1402
1403 --
1404 -- Name: current_way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1405 --
1406
1407 ALTER TABLE ONLY current_way_tags
1408     ADD CONSTRAINT current_way_tags_pkey PRIMARY KEY (way_id, k);
1409
1410
1411 --
1412 -- Name: current_ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1413 --
1414
1415 ALTER TABLE ONLY current_ways
1416     ADD CONSTRAINT current_ways_pkey PRIMARY KEY (id);
1417
1418
1419 --
1420 -- Name: diary_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1421 --
1422
1423 ALTER TABLE ONLY diary_comments
1424     ADD CONSTRAINT diary_comments_pkey PRIMARY KEY (id);
1425
1426
1427 --
1428 -- Name: diary_entries_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1429 --
1430
1431 ALTER TABLE ONLY diary_entries
1432     ADD CONSTRAINT diary_entries_pkey PRIMARY KEY (id);
1433
1434
1435 --
1436 -- Name: friends_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1437 --
1438
1439 ALTER TABLE ONLY friends
1440     ADD CONSTRAINT friends_pkey PRIMARY KEY (id);
1441
1442
1443 --
1444 -- Name: gpx_file_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1445 --
1446
1447 ALTER TABLE ONLY gpx_file_tags
1448     ADD CONSTRAINT gpx_file_tags_pkey PRIMARY KEY (id);
1449
1450
1451 --
1452 -- Name: gpx_files_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1453 --
1454
1455 ALTER TABLE ONLY gpx_files
1456     ADD CONSTRAINT gpx_files_pkey PRIMARY KEY (id);
1457
1458
1459 --
1460 -- Name: languages_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1461 --
1462
1463 ALTER TABLE ONLY languages
1464     ADD CONSTRAINT languages_pkey PRIMARY KEY (code);
1465
1466
1467 --
1468 -- Name: messages_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1469 --
1470
1471 ALTER TABLE ONLY messages
1472     ADD CONSTRAINT messages_pkey PRIMARY KEY (id);
1473
1474
1475 --
1476 -- Name: node_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1477 --
1478
1479 ALTER TABLE ONLY node_tags
1480     ADD CONSTRAINT node_tags_pkey PRIMARY KEY (node_id, version, k);
1481
1482
1483 --
1484 -- Name: nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1485 --
1486
1487 ALTER TABLE ONLY nodes
1488     ADD CONSTRAINT nodes_pkey PRIMARY KEY (node_id, version);
1489
1490
1491 --
1492 -- Name: note_comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1493 --
1494
1495 ALTER TABLE ONLY note_comments
1496     ADD CONSTRAINT note_comments_pkey PRIMARY KEY (id);
1497
1498
1499 --
1500 -- Name: notes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1501 --
1502
1503 ALTER TABLE ONLY notes
1504     ADD CONSTRAINT notes_pkey PRIMARY KEY (id);
1505
1506
1507 --
1508 -- Name: oauth_nonces_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1509 --
1510
1511 ALTER TABLE ONLY oauth_nonces
1512     ADD CONSTRAINT oauth_nonces_pkey PRIMARY KEY (id);
1513
1514
1515 --
1516 -- Name: oauth_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1517 --
1518
1519 ALTER TABLE ONLY oauth_tokens
1520     ADD CONSTRAINT oauth_tokens_pkey PRIMARY KEY (id);
1521
1522
1523 --
1524 -- Name: redactions_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1525 --
1526
1527 ALTER TABLE ONLY redactions
1528     ADD CONSTRAINT redactions_pkey PRIMARY KEY (id);
1529
1530
1531 --
1532 -- Name: relation_members_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1533 --
1534
1535 ALTER TABLE ONLY relation_members
1536     ADD CONSTRAINT relation_members_pkey PRIMARY KEY (relation_id, version, member_type, member_id, member_role, sequence_id);
1537
1538
1539 --
1540 -- Name: relation_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1541 --
1542
1543 ALTER TABLE ONLY relation_tags
1544     ADD CONSTRAINT relation_tags_pkey PRIMARY KEY (relation_id, version, k);
1545
1546
1547 --
1548 -- Name: relations_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1549 --
1550
1551 ALTER TABLE ONLY relations
1552     ADD CONSTRAINT relations_pkey PRIMARY KEY (relation_id, version);
1553
1554
1555 --
1556 -- Name: user_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1557 --
1558
1559 ALTER TABLE ONLY user_blocks
1560     ADD CONSTRAINT user_blocks_pkey PRIMARY KEY (id);
1561
1562
1563 --
1564 -- Name: user_preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1565 --
1566
1567 ALTER TABLE ONLY user_preferences
1568     ADD CONSTRAINT user_preferences_pkey PRIMARY KEY (user_id, k);
1569
1570
1571 --
1572 -- Name: user_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1573 --
1574
1575 ALTER TABLE ONLY user_roles
1576     ADD CONSTRAINT user_roles_pkey PRIMARY KEY (id);
1577
1578
1579 --
1580 -- Name: user_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1581 --
1582
1583 ALTER TABLE ONLY user_tokens
1584     ADD CONSTRAINT user_tokens_pkey PRIMARY KEY (id);
1585
1586
1587 --
1588 -- Name: users_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1589 --
1590
1591 ALTER TABLE ONLY users
1592     ADD CONSTRAINT users_pkey PRIMARY KEY (id);
1593
1594
1595 --
1596 -- Name: way_nodes_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1597 --
1598
1599 ALTER TABLE ONLY way_nodes
1600     ADD CONSTRAINT way_nodes_pkey PRIMARY KEY (way_id, version, sequence_id);
1601
1602
1603 --
1604 -- Name: way_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1605 --
1606
1607 ALTER TABLE ONLY way_tags
1608     ADD CONSTRAINT way_tags_pkey PRIMARY KEY (way_id, version, k);
1609
1610
1611 --
1612 -- Name: ways_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
1613 --
1614
1615 ALTER TABLE ONLY ways
1616     ADD CONSTRAINT ways_pkey PRIMARY KEY (way_id, version);
1617
1618
1619 --
1620 -- Name: acls_k_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1621 --
1622
1623 CREATE INDEX acls_k_idx ON acls USING btree (k);
1624
1625
1626 --
1627 -- Name: changeset_tags_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1628 --
1629
1630 CREATE INDEX changeset_tags_id_idx ON changeset_tags USING btree (changeset_id);
1631
1632
1633 --
1634 -- Name: changesets_bbox_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1635 --
1636
1637 CREATE INDEX changesets_bbox_idx ON changesets USING gist (min_lat, max_lat, min_lon, max_lon);
1638
1639
1640 --
1641 -- Name: changesets_closed_at_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1642 --
1643
1644 CREATE INDEX changesets_closed_at_idx ON changesets USING btree (closed_at);
1645
1646
1647 --
1648 -- Name: changesets_created_at_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1649 --
1650
1651 CREATE INDEX changesets_created_at_idx ON changesets USING btree (created_at);
1652
1653
1654 --
1655 -- Name: changesets_user_id_created_at_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1656 --
1657
1658 CREATE INDEX changesets_user_id_created_at_idx ON changesets USING btree (user_id, created_at);
1659
1660
1661 --
1662 -- Name: changesets_user_id_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1663 --
1664
1665 CREATE INDEX changesets_user_id_id_idx ON changesets USING btree (user_id, id);
1666
1667
1668 --
1669 -- Name: countries_code_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1670 --
1671
1672 CREATE UNIQUE INDEX countries_code_idx ON countries USING btree (code);
1673
1674
1675 --
1676 -- Name: current_nodes_tile_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1677 --
1678
1679 CREATE INDEX current_nodes_tile_idx ON current_nodes USING btree (tile);
1680
1681
1682 --
1683 -- Name: current_nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1684 --
1685
1686 CREATE INDEX current_nodes_timestamp_idx ON current_nodes USING btree ("timestamp");
1687
1688
1689 --
1690 -- Name: current_relation_members_member_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1691 --
1692
1693 CREATE INDEX current_relation_members_member_idx ON current_relation_members USING btree (member_type, member_id);
1694
1695
1696 --
1697 -- Name: current_relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1698 --
1699
1700 CREATE INDEX current_relations_timestamp_idx ON current_relations USING btree ("timestamp");
1701
1702
1703 --
1704 -- Name: current_way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1705 --
1706
1707 CREATE INDEX current_way_nodes_node_idx ON current_way_nodes USING btree (node_id);
1708
1709
1710 --
1711 -- Name: current_ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1712 --
1713
1714 CREATE INDEX current_ways_timestamp_idx ON current_ways USING btree ("timestamp");
1715
1716
1717 --
1718 -- Name: diary_comment_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1719 --
1720
1721 CREATE INDEX diary_comment_user_id_created_at_index ON diary_comments USING btree (user_id, created_at);
1722
1723
1724 --
1725 -- Name: diary_comments_entry_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1726 --
1727
1728 CREATE UNIQUE INDEX diary_comments_entry_id_idx ON diary_comments USING btree (diary_entry_id, id);
1729
1730
1731 --
1732 -- Name: diary_entry_created_at_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1733 --
1734
1735 CREATE INDEX diary_entry_created_at_index ON diary_entries USING btree (created_at);
1736
1737
1738 --
1739 -- Name: diary_entry_language_code_created_at_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1740 --
1741
1742 CREATE INDEX diary_entry_language_code_created_at_index ON diary_entries USING btree (language_code, created_at);
1743
1744
1745 --
1746 -- Name: diary_entry_user_id_created_at_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1747 --
1748
1749 CREATE INDEX diary_entry_user_id_created_at_index ON diary_entries USING btree (user_id, created_at);
1750
1751
1752 --
1753 -- Name: friends_user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1754 --
1755
1756 CREATE INDEX friends_user_id_idx ON friends USING btree (user_id);
1757
1758
1759 --
1760 -- Name: gpx_file_tags_gpxid_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1761 --
1762
1763 CREATE INDEX gpx_file_tags_gpxid_idx ON gpx_file_tags USING btree (gpx_id);
1764
1765
1766 --
1767 -- Name: gpx_file_tags_tag_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1768 --
1769
1770 CREATE INDEX gpx_file_tags_tag_idx ON gpx_file_tags USING btree (tag);
1771
1772
1773 --
1774 -- Name: gpx_files_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1775 --
1776
1777 CREATE INDEX gpx_files_timestamp_idx ON gpx_files USING btree ("timestamp");
1778
1779
1780 --
1781 -- Name: gpx_files_user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1782 --
1783
1784 CREATE INDEX gpx_files_user_id_idx ON gpx_files USING btree (user_id);
1785
1786
1787 --
1788 -- Name: gpx_files_visible_visibility_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1789 --
1790
1791 CREATE INDEX gpx_files_visible_visibility_idx ON gpx_files USING btree (visible, visibility);
1792
1793
1794 --
1795 -- Name: index_client_applications_on_key; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1796 --
1797
1798 CREATE UNIQUE INDEX index_client_applications_on_key ON client_applications USING btree (key);
1799
1800
1801 --
1802 -- Name: index_note_comments_on_body; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1803 --
1804
1805 CREATE INDEX index_note_comments_on_body ON note_comments USING gin (to_tsvector('english'::regconfig, body));
1806
1807
1808 --
1809 -- Name: index_note_comments_on_created_at; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1810 --
1811
1812 CREATE INDEX index_note_comments_on_created_at ON note_comments USING btree (created_at);
1813
1814
1815 --
1816 -- Name: index_oauth_nonces_on_nonce_and_timestamp; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1817 --
1818
1819 CREATE UNIQUE INDEX index_oauth_nonces_on_nonce_and_timestamp ON oauth_nonces USING btree (nonce, "timestamp");
1820
1821
1822 --
1823 -- Name: index_oauth_tokens_on_token; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1824 --
1825
1826 CREATE UNIQUE INDEX index_oauth_tokens_on_token ON oauth_tokens USING btree (token);
1827
1828
1829 --
1830 -- Name: index_user_blocks_on_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1831 --
1832
1833 CREATE INDEX index_user_blocks_on_user_id ON user_blocks USING btree (user_id);
1834
1835
1836 --
1837 -- Name: messages_from_user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1838 --
1839
1840 CREATE INDEX messages_from_user_id_idx ON messages USING btree (from_user_id);
1841
1842
1843 --
1844 -- Name: messages_to_user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1845 --
1846
1847 CREATE INDEX messages_to_user_id_idx ON messages USING btree (to_user_id);
1848
1849
1850 --
1851 -- Name: nodes_changeset_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1852 --
1853
1854 CREATE INDEX nodes_changeset_id_idx ON nodes USING btree (changeset_id);
1855
1856
1857 --
1858 -- Name: nodes_tile_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1859 --
1860
1861 CREATE INDEX nodes_tile_idx ON nodes USING btree (tile);
1862
1863
1864 --
1865 -- Name: nodes_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1866 --
1867
1868 CREATE INDEX nodes_timestamp_idx ON nodes USING btree ("timestamp");
1869
1870
1871 --
1872 -- Name: note_comments_note_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1873 --
1874
1875 CREATE INDEX note_comments_note_id_idx ON note_comments USING btree (note_id);
1876
1877
1878 --
1879 -- Name: notes_created_at_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1880 --
1881
1882 CREATE INDEX notes_created_at_idx ON notes USING btree (created_at);
1883
1884
1885 --
1886 -- Name: notes_tile_status_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1887 --
1888
1889 CREATE INDEX notes_tile_status_idx ON notes USING btree (tile, status);
1890
1891
1892 --
1893 -- Name: notes_updated_at_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1894 --
1895
1896 CREATE INDEX notes_updated_at_idx ON notes USING btree (updated_at);
1897
1898
1899 --
1900 -- Name: points_gpxid_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1901 --
1902
1903 CREATE INDEX points_gpxid_idx ON gps_points USING btree (gpx_id);
1904
1905
1906 --
1907 -- Name: points_tile_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1908 --
1909
1910 CREATE INDEX points_tile_idx ON gps_points USING btree (tile);
1911
1912
1913 --
1914 -- Name: relation_members_member_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1915 --
1916
1917 CREATE INDEX relation_members_member_idx ON relation_members USING btree (member_type, member_id);
1918
1919
1920 --
1921 -- Name: relations_changeset_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1922 --
1923
1924 CREATE INDEX relations_changeset_id_idx ON relations USING btree (changeset_id);
1925
1926
1927 --
1928 -- Name: relations_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1929 --
1930
1931 CREATE INDEX relations_timestamp_idx ON relations USING btree ("timestamp");
1932
1933
1934 --
1935 -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1936 --
1937
1938 CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
1939
1940
1941 --
1942 -- Name: user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1943 --
1944
1945 CREATE INDEX user_id_idx ON friends USING btree (friend_user_id);
1946
1947
1948 --
1949 -- Name: user_openid_url_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1950 --
1951
1952 CREATE UNIQUE INDEX user_openid_url_idx ON users USING btree (openid_url);
1953
1954
1955 --
1956 -- Name: user_roles_id_role_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1957 --
1958
1959 CREATE UNIQUE INDEX user_roles_id_role_unique ON user_roles USING btree (user_id, role);
1960
1961
1962 --
1963 -- Name: user_tokens_token_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1964 --
1965
1966 CREATE UNIQUE INDEX user_tokens_token_idx ON user_tokens USING btree (token);
1967
1968
1969 --
1970 -- Name: user_tokens_user_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1971 --
1972
1973 CREATE INDEX user_tokens_user_id_idx ON user_tokens USING btree (user_id);
1974
1975
1976 --
1977 -- Name: users_display_name_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1978 --
1979
1980 CREATE UNIQUE INDEX users_display_name_idx ON users USING btree (display_name);
1981
1982
1983 --
1984 -- Name: users_display_name_lower_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1985 --
1986
1987 CREATE INDEX users_display_name_lower_idx ON users USING btree (lower((display_name)::text));
1988
1989
1990 --
1991 -- Name: users_email_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1992 --
1993
1994 CREATE UNIQUE INDEX users_email_idx ON users USING btree (email);
1995
1996
1997 --
1998 -- Name: users_email_lower_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
1999 --
2000
2001 CREATE INDEX users_email_lower_idx ON users USING btree (lower((email)::text));
2002
2003
2004 --
2005 -- Name: way_nodes_node_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2006 --
2007
2008 CREATE INDEX way_nodes_node_idx ON way_nodes USING btree (node_id);
2009
2010
2011 --
2012 -- Name: ways_changeset_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2013 --
2014
2015 CREATE INDEX ways_changeset_id_idx ON ways USING btree (changeset_id);
2016
2017
2018 --
2019 -- Name: ways_timestamp_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: 
2020 --
2021
2022 CREATE INDEX ways_timestamp_idx ON ways USING btree ("timestamp");
2023
2024
2025 --
2026 -- Name: changeset_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2027 --
2028
2029 ALTER TABLE ONLY changeset_tags
2030     ADD CONSTRAINT changeset_tags_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
2031
2032
2033 --
2034 -- Name: changesets_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2035 --
2036
2037 ALTER TABLE ONLY changesets
2038     ADD CONSTRAINT changesets_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2039
2040
2041 --
2042 -- Name: client_applications_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2043 --
2044
2045 ALTER TABLE ONLY client_applications
2046     ADD CONSTRAINT client_applications_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2047
2048
2049 --
2050 -- Name: current_node_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2051 --
2052
2053 ALTER TABLE ONLY current_node_tags
2054     ADD CONSTRAINT current_node_tags_id_fkey FOREIGN KEY (node_id) REFERENCES current_nodes(id);
2055
2056
2057 --
2058 -- Name: current_nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2059 --
2060
2061 ALTER TABLE ONLY current_nodes
2062     ADD CONSTRAINT current_nodes_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
2063
2064
2065 --
2066 -- Name: current_relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2067 --
2068
2069 ALTER TABLE ONLY current_relation_members
2070     ADD CONSTRAINT current_relation_members_id_fkey FOREIGN KEY (relation_id) REFERENCES current_relations(id);
2071
2072
2073 --
2074 -- Name: current_relation_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2075 --
2076
2077 ALTER TABLE ONLY current_relation_tags
2078     ADD CONSTRAINT current_relation_tags_id_fkey FOREIGN KEY (relation_id) REFERENCES current_relations(id);
2079
2080
2081 --
2082 -- Name: current_relations_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2083 --
2084
2085 ALTER TABLE ONLY current_relations
2086     ADD CONSTRAINT current_relations_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
2087
2088
2089 --
2090 -- Name: current_way_nodes_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2091 --
2092
2093 ALTER TABLE ONLY current_way_nodes
2094     ADD CONSTRAINT current_way_nodes_id_fkey FOREIGN KEY (way_id) REFERENCES current_ways(id);
2095
2096
2097 --
2098 -- Name: current_way_nodes_node_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2099 --
2100
2101 ALTER TABLE ONLY current_way_nodes
2102     ADD CONSTRAINT current_way_nodes_node_id_fkey FOREIGN KEY (node_id) REFERENCES current_nodes(id);
2103
2104
2105 --
2106 -- Name: current_way_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2107 --
2108
2109 ALTER TABLE ONLY current_way_tags
2110     ADD CONSTRAINT current_way_tags_id_fkey FOREIGN KEY (way_id) REFERENCES current_ways(id);
2111
2112
2113 --
2114 -- Name: current_ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2115 --
2116
2117 ALTER TABLE ONLY current_ways
2118     ADD CONSTRAINT current_ways_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
2119
2120
2121 --
2122 -- Name: diary_comments_diary_entry_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2123 --
2124
2125 ALTER TABLE ONLY diary_comments
2126     ADD CONSTRAINT diary_comments_diary_entry_id_fkey FOREIGN KEY (diary_entry_id) REFERENCES diary_entries(id);
2127
2128
2129 --
2130 -- Name: diary_comments_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2131 --
2132
2133 ALTER TABLE ONLY diary_comments
2134     ADD CONSTRAINT diary_comments_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2135
2136
2137 --
2138 -- Name: diary_entries_language_code_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2139 --
2140
2141 ALTER TABLE ONLY diary_entries
2142     ADD CONSTRAINT diary_entries_language_code_fkey FOREIGN KEY (language_code) REFERENCES languages(code);
2143
2144
2145 --
2146 -- Name: diary_entries_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2147 --
2148
2149 ALTER TABLE ONLY diary_entries
2150     ADD CONSTRAINT diary_entries_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2151
2152
2153 --
2154 -- Name: friends_friend_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2155 --
2156
2157 ALTER TABLE ONLY friends
2158     ADD CONSTRAINT friends_friend_user_id_fkey FOREIGN KEY (friend_user_id) REFERENCES users(id);
2159
2160
2161 --
2162 -- Name: friends_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2163 --
2164
2165 ALTER TABLE ONLY friends
2166     ADD CONSTRAINT friends_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2167
2168
2169 --
2170 -- Name: gps_points_gpx_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2171 --
2172
2173 ALTER TABLE ONLY gps_points
2174     ADD CONSTRAINT gps_points_gpx_id_fkey FOREIGN KEY (gpx_id) REFERENCES gpx_files(id);
2175
2176
2177 --
2178 -- Name: gpx_file_tags_gpx_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2179 --
2180
2181 ALTER TABLE ONLY gpx_file_tags
2182     ADD CONSTRAINT gpx_file_tags_gpx_id_fkey FOREIGN KEY (gpx_id) REFERENCES gpx_files(id);
2183
2184
2185 --
2186 -- Name: gpx_files_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2187 --
2188
2189 ALTER TABLE ONLY gpx_files
2190     ADD CONSTRAINT gpx_files_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2191
2192
2193 --
2194 -- Name: messages_from_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2195 --
2196
2197 ALTER TABLE ONLY messages
2198     ADD CONSTRAINT messages_from_user_id_fkey FOREIGN KEY (from_user_id) REFERENCES users(id);
2199
2200
2201 --
2202 -- Name: messages_to_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2203 --
2204
2205 ALTER TABLE ONLY messages
2206     ADD CONSTRAINT messages_to_user_id_fkey FOREIGN KEY (to_user_id) REFERENCES users(id);
2207
2208
2209 --
2210 -- Name: node_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2211 --
2212
2213 ALTER TABLE ONLY node_tags
2214     ADD CONSTRAINT node_tags_id_fkey FOREIGN KEY (node_id, version) REFERENCES nodes(node_id, version);
2215
2216
2217 --
2218 -- Name: nodes_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2219 --
2220
2221 ALTER TABLE ONLY nodes
2222     ADD CONSTRAINT nodes_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
2223
2224
2225 --
2226 -- Name: nodes_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2227 --
2228
2229 ALTER TABLE ONLY nodes
2230     ADD CONSTRAINT nodes_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES redactions(id);
2231
2232
2233 --
2234 -- Name: note_comments_author_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2235 --
2236
2237 ALTER TABLE ONLY note_comments
2238     ADD CONSTRAINT note_comments_author_id_fkey FOREIGN KEY (author_id) REFERENCES users(id);
2239
2240
2241 --
2242 -- Name: note_comments_note_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2243 --
2244
2245 ALTER TABLE ONLY note_comments
2246     ADD CONSTRAINT note_comments_note_id_fkey FOREIGN KEY (note_id) REFERENCES notes(id);
2247
2248
2249 --
2250 -- Name: oauth_tokens_client_application_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2251 --
2252
2253 ALTER TABLE ONLY oauth_tokens
2254     ADD CONSTRAINT oauth_tokens_client_application_id_fkey FOREIGN KEY (client_application_id) REFERENCES client_applications(id);
2255
2256
2257 --
2258 -- Name: oauth_tokens_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2259 --
2260
2261 ALTER TABLE ONLY oauth_tokens
2262     ADD CONSTRAINT oauth_tokens_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2263
2264
2265 --
2266 -- Name: redactions_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2267 --
2268
2269 ALTER TABLE ONLY redactions
2270     ADD CONSTRAINT redactions_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2271
2272
2273 --
2274 -- Name: relation_members_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2275 --
2276
2277 ALTER TABLE ONLY relation_members
2278     ADD CONSTRAINT relation_members_id_fkey FOREIGN KEY (relation_id, version) REFERENCES relations(relation_id, version);
2279
2280
2281 --
2282 -- Name: relation_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2283 --
2284
2285 ALTER TABLE ONLY relation_tags
2286     ADD CONSTRAINT relation_tags_id_fkey FOREIGN KEY (relation_id, version) REFERENCES relations(relation_id, version);
2287
2288
2289 --
2290 -- Name: relations_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2291 --
2292
2293 ALTER TABLE ONLY relations
2294     ADD CONSTRAINT relations_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
2295
2296
2297 --
2298 -- Name: relations_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2299 --
2300
2301 ALTER TABLE ONLY relations
2302     ADD CONSTRAINT relations_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES redactions(id);
2303
2304
2305 --
2306 -- Name: user_blocks_moderator_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2307 --
2308
2309 ALTER TABLE ONLY user_blocks
2310     ADD CONSTRAINT user_blocks_moderator_id_fkey FOREIGN KEY (creator_id) REFERENCES users(id);
2311
2312
2313 --
2314 -- Name: user_blocks_revoker_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2315 --
2316
2317 ALTER TABLE ONLY user_blocks
2318     ADD CONSTRAINT user_blocks_revoker_id_fkey FOREIGN KEY (revoker_id) REFERENCES users(id);
2319
2320
2321 --
2322 -- Name: user_blocks_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2323 --
2324
2325 ALTER TABLE ONLY user_blocks
2326     ADD CONSTRAINT user_blocks_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2327
2328
2329 --
2330 -- Name: user_preferences_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2331 --
2332
2333 ALTER TABLE ONLY user_preferences
2334     ADD CONSTRAINT user_preferences_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2335
2336
2337 --
2338 -- Name: user_roles_granter_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2339 --
2340
2341 ALTER TABLE ONLY user_roles
2342     ADD CONSTRAINT user_roles_granter_id_fkey FOREIGN KEY (granter_id) REFERENCES users(id);
2343
2344
2345 --
2346 -- Name: user_roles_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2347 --
2348
2349 ALTER TABLE ONLY user_roles
2350     ADD CONSTRAINT user_roles_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2351
2352
2353 --
2354 -- Name: user_tokens_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2355 --
2356
2357 ALTER TABLE ONLY user_tokens
2358     ADD CONSTRAINT user_tokens_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
2359
2360
2361 --
2362 -- Name: way_nodes_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2363 --
2364
2365 ALTER TABLE ONLY way_nodes
2366     ADD CONSTRAINT way_nodes_id_fkey FOREIGN KEY (way_id, version) REFERENCES ways(way_id, version);
2367
2368
2369 --
2370 -- Name: way_tags_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2371 --
2372
2373 ALTER TABLE ONLY way_tags
2374     ADD CONSTRAINT way_tags_id_fkey FOREIGN KEY (way_id, version) REFERENCES ways(way_id, version);
2375
2376
2377 --
2378 -- Name: ways_changeset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2379 --
2380
2381 ALTER TABLE ONLY ways
2382     ADD CONSTRAINT ways_changeset_id_fkey FOREIGN KEY (changeset_id) REFERENCES changesets(id);
2383
2384
2385 --
2386 -- Name: ways_redaction_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
2387 --
2388
2389 ALTER TABLE ONLY ways
2390     ADD CONSTRAINT ways_redaction_id_fkey FOREIGN KEY (redaction_id) REFERENCES redactions(id);
2391
2392
2393 --
2394 -- PostgreSQL database dump complete
2395 --
2396
2397 SET search_path TO "$user",public;
2398
2399 INSERT INTO schema_migrations (version) VALUES ('1');
2400
2401 INSERT INTO schema_migrations (version) VALUES ('10');
2402
2403 INSERT INTO schema_migrations (version) VALUES ('11');
2404
2405 INSERT INTO schema_migrations (version) VALUES ('12');
2406
2407 INSERT INTO schema_migrations (version) VALUES ('13');
2408
2409 INSERT INTO schema_migrations (version) VALUES ('14');
2410
2411 INSERT INTO schema_migrations (version) VALUES ('15');
2412
2413 INSERT INTO schema_migrations (version) VALUES ('16');
2414
2415 INSERT INTO schema_migrations (version) VALUES ('17');
2416
2417 INSERT INTO schema_migrations (version) VALUES ('18');
2418
2419 INSERT INTO schema_migrations (version) VALUES ('19');
2420
2421 INSERT INTO schema_migrations (version) VALUES ('2');
2422
2423 INSERT INTO schema_migrations (version) VALUES ('20');
2424
2425 INSERT INTO schema_migrations (version) VALUES ('20100513171259');
2426
2427 INSERT INTO schema_migrations (version) VALUES ('20100516124737');
2428
2429 INSERT INTO schema_migrations (version) VALUES ('20100910084426');
2430
2431 INSERT INTO schema_migrations (version) VALUES ('20101114011429');
2432
2433 INSERT INTO schema_migrations (version) VALUES ('20110322001319');
2434
2435 INSERT INTO schema_migrations (version) VALUES ('20110508145337');
2436
2437 INSERT INTO schema_migrations (version) VALUES ('20110521142405');
2438
2439 INSERT INTO schema_migrations (version) VALUES ('20110925112722');
2440
2441 INSERT INTO schema_migrations (version) VALUES ('20111116184519');
2442
2443 INSERT INTO schema_migrations (version) VALUES ('20111212183945');
2444
2445 INSERT INTO schema_migrations (version) VALUES ('20120123184321');
2446
2447 INSERT INTO schema_migrations (version) VALUES ('20120208122334');
2448
2449 INSERT INTO schema_migrations (version) VALUES ('20120208194454');
2450
2451 INSERT INTO schema_migrations (version) VALUES ('20120214210114');
2452
2453 INSERT INTO schema_migrations (version) VALUES ('20120219161649');
2454
2455 INSERT INTO schema_migrations (version) VALUES ('20120318201948');
2456
2457 INSERT INTO schema_migrations (version) VALUES ('20120328090602');
2458
2459 INSERT INTO schema_migrations (version) VALUES ('20120404205604');
2460
2461 INSERT INTO schema_migrations (version) VALUES ('20120808231205');
2462
2463 INSERT INTO schema_migrations (version) VALUES ('20121005195010');
2464
2465 INSERT INTO schema_migrations (version) VALUES ('20121012044047');
2466
2467 INSERT INTO schema_migrations (version) VALUES ('20121119165817');
2468
2469 INSERT INTO schema_migrations (version) VALUES ('20121202155309');
2470
2471 INSERT INTO schema_migrations (version) VALUES ('20121203124841');
2472
2473 INSERT INTO schema_migrations (version) VALUES ('20130328184137');
2474
2475 INSERT INTO schema_migrations (version) VALUES ('20131212124700');
2476
2477 INSERT INTO schema_migrations (version) VALUES ('20140115192822');
2478
2479 INSERT INTO schema_migrations (version) VALUES ('21');
2480
2481 INSERT INTO schema_migrations (version) VALUES ('22');
2482
2483 INSERT INTO schema_migrations (version) VALUES ('23');
2484
2485 INSERT INTO schema_migrations (version) VALUES ('24');
2486
2487 INSERT INTO schema_migrations (version) VALUES ('25');
2488
2489 INSERT INTO schema_migrations (version) VALUES ('26');
2490
2491 INSERT INTO schema_migrations (version) VALUES ('27');
2492
2493 INSERT INTO schema_migrations (version) VALUES ('28');
2494
2495 INSERT INTO schema_migrations (version) VALUES ('29');
2496
2497 INSERT INTO schema_migrations (version) VALUES ('3');
2498
2499 INSERT INTO schema_migrations (version) VALUES ('30');
2500
2501 INSERT INTO schema_migrations (version) VALUES ('31');
2502
2503 INSERT INTO schema_migrations (version) VALUES ('32');
2504
2505 INSERT INTO schema_migrations (version) VALUES ('33');
2506
2507 INSERT INTO schema_migrations (version) VALUES ('34');
2508
2509 INSERT INTO schema_migrations (version) VALUES ('35');
2510
2511 INSERT INTO schema_migrations (version) VALUES ('36');
2512
2513 INSERT INTO schema_migrations (version) VALUES ('37');
2514
2515 INSERT INTO schema_migrations (version) VALUES ('38');
2516
2517 INSERT INTO schema_migrations (version) VALUES ('39');
2518
2519 INSERT INTO schema_migrations (version) VALUES ('4');
2520
2521 INSERT INTO schema_migrations (version) VALUES ('40');
2522
2523 INSERT INTO schema_migrations (version) VALUES ('41');
2524
2525 INSERT INTO schema_migrations (version) VALUES ('42');
2526
2527 INSERT INTO schema_migrations (version) VALUES ('43');
2528
2529 INSERT INTO schema_migrations (version) VALUES ('44');
2530
2531 INSERT INTO schema_migrations (version) VALUES ('45');
2532
2533 INSERT INTO schema_migrations (version) VALUES ('46');
2534
2535 INSERT INTO schema_migrations (version) VALUES ('47');
2536
2537 INSERT INTO schema_migrations (version) VALUES ('48');
2538
2539 INSERT INTO schema_migrations (version) VALUES ('49');
2540
2541 INSERT INTO schema_migrations (version) VALUES ('5');
2542
2543 INSERT INTO schema_migrations (version) VALUES ('50');
2544
2545 INSERT INTO schema_migrations (version) VALUES ('51');
2546
2547 INSERT INTO schema_migrations (version) VALUES ('52');
2548
2549 INSERT INTO schema_migrations (version) VALUES ('53');
2550
2551 INSERT INTO schema_migrations (version) VALUES ('54');
2552
2553 INSERT INTO schema_migrations (version) VALUES ('55');
2554
2555 INSERT INTO schema_migrations (version) VALUES ('56');
2556
2557 INSERT INTO schema_migrations (version) VALUES ('57');
2558
2559 INSERT INTO schema_migrations (version) VALUES ('6');
2560
2561 INSERT INTO schema_migrations (version) VALUES ('7');
2562
2563 INSERT INTO schema_migrations (version) VALUES ('8');
2564
2565 INSERT INTO schema_migrations (version) VALUES ('9');