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