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