-
Notifications
You must be signed in to change notification settings - Fork 926
/
structure.sql
2689 lines (1768 loc) · 62.1 KB
/
structure.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.5.4
-- Dumped by pg_dump version 9.5.4
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
--
-- Name: btree_gist; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS btree_gist WITH SCHEMA public;
--
-- Name: EXTENSION btree_gist; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION btree_gist IS 'support for indexing common datatypes in GiST';
SET search_path = public, pg_catalog;
--
-- Name: format_enum; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE format_enum AS ENUM (
'html',
'markdown',
'text'
);
--
-- Name: gpx_visibility_enum; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE gpx_visibility_enum AS ENUM (
'private',
'public',
'trackable',
'identifiable'
);
--
-- Name: note_event_enum; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE note_event_enum AS ENUM (
'opened',
'closed',
'reopened',
'commented',
'hidden'
);
--
-- Name: note_status_enum; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE note_status_enum AS ENUM (
'open',
'closed',
'hidden'
);
--
-- Name: nwr_enum; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE nwr_enum AS ENUM (
'Node',
'Way',
'Relation'
);
--
-- Name: user_role_enum; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE user_role_enum AS ENUM (
'administrator',
'moderator'
);
--
-- Name: user_status_enum; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE user_status_enum AS ENUM (
'pending',
'active',
'confirmed',
'suspended',
'deleted'
);
--
-- Name: maptile_for_point(bigint, bigint, integer); Type: FUNCTION; Schema: public; Owner: -
--
CREATE FUNCTION maptile_for_point(bigint, bigint, integer) RETURNS integer
LANGUAGE c STRICT
AS '$libdir/libpgosm', 'maptile_for_point';
--
-- Name: tile_for_point(integer, integer); Type: FUNCTION; Schema: public; Owner: -
--
CREATE FUNCTION tile_for_point(integer, integer) RETURNS bigint
LANGUAGE c STRICT
AS '$libdir/libpgosm', 'tile_for_point';
--
-- Name: xid_to_int4(xid); Type: FUNCTION; Schema: public; Owner: -
--
CREATE FUNCTION xid_to_int4(xid) RETURNS integer
LANGUAGE c IMMUTABLE STRICT
AS '$libdir/libpgosm', 'xid_to_int4';
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: acls; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE acls (
id integer NOT NULL,
address inet,
k character varying(255) NOT NULL,
v character varying(255),
domain character varying(255)
);
--
-- Name: acls_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE acls_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: acls_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE acls_id_seq OWNED BY acls.id;
--
-- Name: changeset_comments; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE changeset_comments (
id integer NOT NULL,
changeset_id bigint NOT NULL,
author_id bigint NOT NULL,
body text NOT NULL,
created_at timestamp without time zone NOT NULL,
visible boolean NOT NULL
);
--
-- Name: changeset_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE changeset_comments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: changeset_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE changeset_comments_id_seq OWNED BY changeset_comments.id;
--
-- Name: changeset_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE changeset_tags (
changeset_id bigint NOT NULL,
k character varying(255) DEFAULT ''::character varying NOT NULL,
v character varying(255) DEFAULT ''::character varying NOT NULL
);
--
-- Name: changesets; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE changesets (
id bigint NOT NULL,
user_id bigint NOT NULL,
created_at timestamp without time zone NOT NULL,
min_lat integer,
max_lat integer,
min_lon integer,
max_lon integer,
closed_at timestamp without time zone NOT NULL,
num_changes integer DEFAULT 0 NOT NULL
);
--
-- Name: changesets_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE changesets_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: changesets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE changesets_id_seq OWNED BY changesets.id;
--
-- Name: changesets_subscribers; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE changesets_subscribers (
subscriber_id bigint NOT NULL,
changeset_id bigint NOT NULL
);
--
-- Name: client_applications; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE client_applications (
id integer NOT NULL,
name character varying(255),
url character varying(255),
support_url character varying(255),
callback_url character varying(255),
key character varying(50),
secret character varying(50),
user_id integer,
created_at timestamp without time zone,
updated_at timestamp without time zone,
allow_read_prefs boolean DEFAULT false NOT NULL,
allow_write_prefs boolean DEFAULT false NOT NULL,
allow_write_diary boolean DEFAULT false NOT NULL,
allow_write_api boolean DEFAULT false NOT NULL,
allow_read_gpx boolean DEFAULT false NOT NULL,
allow_write_gpx boolean DEFAULT false NOT NULL,
allow_write_notes boolean DEFAULT false NOT NULL
);
--
-- Name: client_applications_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE client_applications_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: client_applications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE client_applications_id_seq OWNED BY client_applications.id;
--
-- Name: current_node_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_node_tags (
node_id bigint NOT NULL,
k character varying(255) DEFAULT ''::character varying NOT NULL,
v character varying(255) DEFAULT ''::character varying NOT NULL
);
--
-- Name: current_nodes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_nodes (
id bigint NOT NULL,
latitude integer NOT NULL,
longitude integer NOT NULL,
changeset_id bigint NOT NULL,
visible boolean NOT NULL,
"timestamp" timestamp without time zone NOT NULL,
tile bigint NOT NULL,
version bigint NOT NULL
);
--
-- Name: current_nodes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE current_nodes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: current_nodes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE current_nodes_id_seq OWNED BY current_nodes.id;
--
-- Name: current_relation_members; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_relation_members (
relation_id bigint NOT NULL,
member_type nwr_enum NOT NULL,
member_id bigint NOT NULL,
member_role character varying(255) NOT NULL,
sequence_id integer DEFAULT 0 NOT NULL
);
--
-- Name: current_relation_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_relation_tags (
relation_id bigint NOT NULL,
k character varying(255) DEFAULT ''::character varying NOT NULL,
v character varying(255) DEFAULT ''::character varying NOT NULL
);
--
-- Name: current_relations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_relations (
id bigint NOT NULL,
changeset_id bigint NOT NULL,
"timestamp" timestamp without time zone NOT NULL,
visible boolean NOT NULL,
version bigint NOT NULL
);
--
-- Name: current_relations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE current_relations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: current_relations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE current_relations_id_seq OWNED BY current_relations.id;
--
-- Name: current_way_nodes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_way_nodes (
way_id bigint NOT NULL,
node_id bigint NOT NULL,
sequence_id bigint NOT NULL
);
--
-- Name: current_way_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_way_tags (
way_id bigint NOT NULL,
k character varying(255) DEFAULT ''::character varying NOT NULL,
v character varying(255) DEFAULT ''::character varying NOT NULL
);
--
-- Name: current_ways; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE current_ways (
id bigint NOT NULL,
changeset_id bigint NOT NULL,
"timestamp" timestamp without time zone NOT NULL,
visible boolean NOT NULL,
version bigint NOT NULL
);
--
-- Name: current_ways_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE current_ways_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: current_ways_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE current_ways_id_seq OWNED BY current_ways.id;
--
-- Name: diary_comments; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE diary_comments (
id bigint NOT NULL,
diary_entry_id bigint NOT NULL,
user_id bigint NOT NULL,
body text NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
visible boolean DEFAULT true NOT NULL,
body_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
);
--
-- Name: diary_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE diary_comments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: diary_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE diary_comments_id_seq OWNED BY diary_comments.id;
--
-- Name: diary_entries; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE diary_entries (
id bigint NOT NULL,
user_id bigint NOT NULL,
title character varying(255) NOT NULL,
body text NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
latitude double precision,
longitude double precision,
language_code character varying(255) DEFAULT 'en'::character varying NOT NULL,
visible boolean DEFAULT true NOT NULL,
body_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
);
--
-- Name: diary_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE diary_entries_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: diary_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE diary_entries_id_seq OWNED BY diary_entries.id;
--
-- Name: diary_entry_subscriptions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE diary_entry_subscriptions (
user_id bigint NOT NULL,
diary_entry_id bigint NOT NULL
);
--
-- Name: friends; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE friends (
id bigint NOT NULL,
user_id bigint NOT NULL,
friend_user_id bigint NOT NULL
);
--
-- Name: friends_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE friends_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: friends_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE friends_id_seq OWNED BY friends.id;
--
-- Name: gps_points; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE gps_points (
altitude double precision,
trackid integer NOT NULL,
latitude integer NOT NULL,
longitude integer NOT NULL,
gpx_id bigint NOT NULL,
"timestamp" timestamp without time zone,
tile bigint
);
--
-- Name: gpx_file_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE gpx_file_tags (
gpx_id bigint DEFAULT 0 NOT NULL,
tag character varying(255) NOT NULL,
id bigint NOT NULL
);
--
-- Name: gpx_file_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE gpx_file_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: gpx_file_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE gpx_file_tags_id_seq OWNED BY gpx_file_tags.id;
--
-- Name: gpx_files; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE gpx_files (
id bigint NOT NULL,
user_id bigint NOT NULL,
visible boolean DEFAULT true NOT NULL,
name character varying(255) DEFAULT ''::character varying NOT NULL,
size bigint,
latitude double precision,
longitude double precision,
"timestamp" timestamp without time zone NOT NULL,
description character varying(255) DEFAULT ''::character varying NOT NULL,
inserted boolean NOT NULL,
visibility gpx_visibility_enum DEFAULT 'public'::gpx_visibility_enum NOT NULL
);
--
-- Name: gpx_files_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE gpx_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: gpx_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE gpx_files_id_seq OWNED BY gpx_files.id;
--
-- Name: languages; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE languages (
code character varying(255) NOT NULL,
english_name character varying(255) NOT NULL,
native_name character varying(255)
);
--
-- Name: messages; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE messages (
id bigint NOT NULL,
from_user_id bigint NOT NULL,
title character varying(255) NOT NULL,
body text NOT NULL,
sent_on timestamp without time zone NOT NULL,
message_read boolean DEFAULT false NOT NULL,
to_user_id bigint NOT NULL,
to_user_visible boolean DEFAULT true NOT NULL,
from_user_visible boolean DEFAULT true NOT NULL,
body_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
);
--
-- Name: messages_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE messages_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE messages_id_seq OWNED BY messages.id;
--
-- Name: node_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE node_tags (
node_id bigint NOT NULL,
version bigint NOT NULL,
k character varying(255) DEFAULT ''::character varying NOT NULL,
v character varying(255) DEFAULT ''::character varying NOT NULL
);
--
-- Name: nodes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE nodes (
node_id bigint NOT NULL,
latitude integer NOT NULL,
longitude integer NOT NULL,
changeset_id bigint NOT NULL,
visible boolean NOT NULL,
"timestamp" timestamp without time zone NOT NULL,
tile bigint NOT NULL,
version bigint NOT NULL,
redaction_id integer
);
--
-- Name: note_comments; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE note_comments (
id integer NOT NULL,
note_id bigint NOT NULL,
visible boolean NOT NULL,
created_at timestamp without time zone NOT NULL,
author_ip inet,
author_id bigint,
body text,
event note_event_enum
);
--
-- Name: note_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE note_comments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: note_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE note_comments_id_seq OWNED BY note_comments.id;
--
-- Name: notes; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE notes (
id integer NOT NULL,
latitude integer NOT NULL,
longitude integer NOT NULL,
tile bigint NOT NULL,
updated_at timestamp without time zone NOT NULL,
created_at timestamp without time zone NOT NULL,
status note_status_enum NOT NULL,
closed_at timestamp without time zone
);
--
-- Name: notes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE notes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: notes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE notes_id_seq OWNED BY notes.id;
--
-- Name: oauth_nonces; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE oauth_nonces (
id integer NOT NULL,
nonce character varying(255),
"timestamp" integer,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
--
-- Name: oauth_nonces_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE oauth_nonces_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: oauth_nonces_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE oauth_nonces_id_seq OWNED BY oauth_nonces.id;
--
-- Name: oauth_tokens; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE oauth_tokens (
id integer NOT NULL,
user_id integer,
type character varying(20),
client_application_id integer,
token character varying(50),
secret character varying(50),
authorized_at timestamp without time zone,
invalidated_at timestamp without time zone,
created_at timestamp without time zone,
updated_at timestamp without time zone,
allow_read_prefs boolean DEFAULT false NOT NULL,
allow_write_prefs boolean DEFAULT false NOT NULL,
allow_write_diary boolean DEFAULT false NOT NULL,
allow_write_api boolean DEFAULT false NOT NULL,
allow_read_gpx boolean DEFAULT false NOT NULL,
allow_write_gpx boolean DEFAULT false NOT NULL,
callback_url character varying(255),
verifier character varying(20),
scope character varying(255),
valid_to timestamp without time zone,
allow_write_notes boolean DEFAULT false NOT NULL
);
--
-- Name: oauth_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE oauth_tokens_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: oauth_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE oauth_tokens_id_seq OWNED BY oauth_tokens.id;
--
-- Name: redactions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE redactions (
id integer NOT NULL,
title character varying(255),
description text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
user_id bigint NOT NULL,
description_format format_enum DEFAULT 'markdown'::format_enum NOT NULL
);
--
-- Name: redactions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE redactions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: redactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE redactions_id_seq OWNED BY redactions.id;
--
-- Name: relation_members; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE relation_members (
relation_id bigint DEFAULT 0 NOT NULL,
member_type nwr_enum NOT NULL,
member_id bigint NOT NULL,
member_role character varying(255) NOT NULL,
version bigint DEFAULT 0 NOT NULL,
sequence_id integer DEFAULT 0 NOT NULL
);
--
-- Name: relation_tags; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE relation_tags (
relation_id bigint DEFAULT 0 NOT NULL,
k character varying(255) DEFAULT ''::character varying NOT NULL,
v character varying(255) DEFAULT ''::character varying NOT NULL,
version bigint NOT NULL
);
--
-- Name: relations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE relations (
relation_id bigint DEFAULT 0 NOT NULL,
changeset_id bigint NOT NULL,
"timestamp" timestamp without time zone NOT NULL,
version bigint NOT NULL,
visible boolean DEFAULT true NOT NULL,
redaction_id integer
);
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE schema_migrations (
version character varying(255) NOT NULL
);
--
-- Name: user_blocks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE user_blocks (
id integer NOT NULL,
user_id bigint NOT NULL,
creator_id bigint NOT NULL,
reason text NOT NULL,
ends_at timestamp without time zone NOT NULL,
needs_view boolean DEFAULT false NOT NULL,
revoker_id bigint,
created_at timestamp without time zone,
updated_at timestamp without time zone,
reason_format format_enum DEFAULT 'markdown'::format_enum NOT NULL