Project

General

Profile

1 689 aaronmk
--
2
-- PostgreSQL database dump
3
--
4
5
6
7
8
9
10
11
12
--
13
-- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: -
14
--
15
16
17
18
19
20
--
21 712 aaronmk
-- Name: occurrencestatus_dwc; Type: TYPE; Schema: public; Owner: -
22
--
23
24
25
26 713 aaronmk
27 712 aaronmk
--
28 1313 aaronmk
-- Name: placerank; Type: TYPE; Schema: public; Owner: -
29
--
30
31
32
33
34
--
35
-- Name: TYPE placerank; Type: COMMENT; Schema: public; Owner: -
36
--
37
38
39
40
41
--
42 1174 aaronmk
-- Name: taxonclass; Type: TYPE; Schema: public; Owner: -
43
--
44
45
46
47
48
--
49 1111 aaronmk
-- Name: taxonrank; Type: TYPE; Schema: public; Owner: -
50
--
51
52
53
54
55
--
56 704 aaronmk
-- Name: aggregateoccurrence_plantobs_count_1(); Type: FUNCTION; Schema: public; Owner: -
57
--
58
59
60
61 705 aaronmk
62 704 aaronmk
--
63 689 aaronmk
-- Name: concat(text); Type: AGGREGATE; Schema: public; Owner: -
64
--
65
66
67
68
69
70
71
72
73
--
74
-- Name: address; Type: TABLE; Schema: public; Owner: -; Tablespace:
75
--
76
77
CREATE TABLE address (
78
    address_id int(11) NOT NULL,
79
    party_id int(11) NOT NULL,
80
    organization_id int(11),
81 841 aaronmk
    orgposition text,
82
    email text,
83
    deliverypoint text,
84
    city text,
85
    administrativearea text,
86
    postalcode text,
87
    country text,
88 689 aaronmk
    currentflag int(1),
89
    addressstartdate timestamp NULL
90
);
91
92
93
--
94
-- Name: address_address_id_seq; Type: SEQUENCE; Schema: public; Owner: -
95
--
96
97
98
99
100
--
101
-- Name: address_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
102
--
103
104
105
106
107
--
108
-- Name: aggregateoccurrence; Type: TABLE; Schema: public; Owner: -; Tablespace:
109
--
110
111
CREATE TABLE aggregateoccurrence (
112
    aggregateoccurrence_id int(11) NOT NULL,
113
    taxonoccurrence_id int(11) NOT NULL,
114
    cover double precision,
115
    basalarea double precision,
116
    biomass double precision,
117
    inferencearea double precision,
118
    count int(11),
119 841 aaronmk
    accessioncode text,
120
    sourceaccessioncode text,
121 689 aaronmk
    plantobservation_id int(11),
122
    stratum_id int(11),
123 712 aaronmk
    coverindex_id int(11),
124 1231 aaronmk
    occurrencestatus_dwc text DEFAULT 'present' NOT NULL,
125 1166 aaronmk
    method_id int(11),
126 1203 aaronmk
    linecover double precision,
127 1214 aaronmk
    verbatimcollectorname text,
128
    growthform text
129 689 aaronmk
);
130
131
132
--
133
-- Name: TABLE aggregateoccurrence; Type: COMMENT; Schema: public; Owner: -
134
--
135
136
137
138
139
--
140 712 aaronmk
-- Name: COLUMN aggregateoccurrence.occurrencestatus_dwc; Type: COMMENT; Schema: public; Owner: -
141
--
142
143
144
145
146
--
147 1166 aaronmk
-- Name: COLUMN aggregateoccurrence.linecover; Type: COMMENT; Schema: public; Owner: -
148
--
149
150
151
152
153
--
154 689 aaronmk
-- Name: aggregateoccurrence_aggregateoccurrence_id_seq; Type: SEQUENCE; Schema: public; Owner: -
155
--
156
157
158
159
160
--
161
-- Name: aggregateoccurrence_aggregateoccurrence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
162
--
163
164
165
166
167
--
168
-- Name: classcontributor; Type: TABLE; Schema: public; Owner: -; Tablespace:
169
--
170
171
CREATE TABLE classcontributor (
172
    classcontributor_id int(11) NOT NULL,
173
    commclass_id int(11) NOT NULL,
174
    party_id int(11) NOT NULL,
175 1212 aaronmk
    role_id int(11)
176 689 aaronmk
);
177
178
179
--
180
-- Name: classcontributor_classcontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: -
181
--
182
183
184
185
186
--
187
-- Name: classcontributor_classcontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
188
--
189
190
191
192
193
--
194
-- Name: commclass; Type: TABLE; Schema: public; Owner: -; Tablespace:
195
--
196
197
CREATE TABLE commclass (
198
    commclass_id int(11) NOT NULL,
199
    locationevent_id int(11) NOT NULL,
200
    inspection int(1),
201
    tableanalysis int(1),
202
    multivariateanalysis int(1),
203
    classpublication_id int(11),
204
    classnotes text,
205 841 aaronmk
    commname text,
206
    commcode text,
207
    commframework text,
208
    commlevel text,
209 689 aaronmk
    classstartdate timestamp NULL,
210
    classstopdate timestamp NULL,
211
    expertsystem text,
212 841 aaronmk
    accessioncode text
213 689 aaronmk
);
214
215
216
--
217
-- Name: commclass_commclass_id_seq; Type: SEQUENCE; Schema: public; Owner: -
218
--
219
220
221
222
223
--
224
-- Name: commclass_commclass_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
225
--
226
227
228
229
230
--
231
-- Name: commconcept; Type: TABLE; Schema: public; Owner: -; Tablespace:
232
--
233
234
CREATE TABLE commconcept (
235
    commconcept_id int(11) NOT NULL,
236
    commname_id int(11) NOT NULL,
237
    reference_id int(11),
238
    commdescription text,
239
    d_obscount int(11),
240
    commname text,
241
    d_currentaccepted int(1),
242 841 aaronmk
    accessioncode text
243 689 aaronmk
);
244
245
246
--
247
-- Name: commconcept_commconcept_id_seq; Type: SEQUENCE; Schema: public; Owner: -
248
--
249
250
251
252
253
--
254
-- Name: commconcept_commconcept_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
255
--
256
257
258
259
260
--
261
-- Name: commcorrelation; Type: TABLE; Schema: public; Owner: -; Tablespace:
262
--
263
264
CREATE TABLE commcorrelation (
265
    commcorrelation_id int(11) NOT NULL,
266
    commstatus_id int(11) NOT NULL,
267
    commconcept_id int(11) NOT NULL,
268 841 aaronmk
    commconvergence text NOT NULL,
269 689 aaronmk
    correlationstart timestamp NOT NULL,
270
    correlationstop timestamp NULL
271
);
272
273
274
--
275
-- Name: commcorrelation_commcorrelation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
276
--
277
278
279
280
281
--
282
-- Name: commcorrelation_commcorrelation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
283
--
284
285
286
287
288
--
289
-- Name: commdetermination; Type: TABLE; Schema: public; Owner: -; Tablespace:
290
--
291
292
CREATE TABLE commdetermination (
293
    commdetermination_id int(11) NOT NULL,
294
    commclass_id int(11) NOT NULL,
295
    commconcept_id int(11),
296 841 aaronmk
    commcode text,
297
    commname text,
298
    classfit text,
299
    classconfidence text,
300 689 aaronmk
    commauthority_id int(11),
301
    notes text,
302
    type int(1),
303 1212 aaronmk
    nomenclaturaltype int(1)
304 689 aaronmk
);
305
306
307
--
308
-- Name: commdetermination_commdetermination_id_seq; Type: SEQUENCE; Schema: public; Owner: -
309
--
310
311
312
313
314
--
315
-- Name: commdetermination_commdetermination_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
316
--
317
318
319
320
321
--
322
-- Name: commlineage; Type: TABLE; Schema: public; Owner: -; Tablespace:
323
--
324
325
CREATE TABLE commlineage (
326
    commlineage_id int(11) NOT NULL,
327
    parentcommstatus_id int(11) NOT NULL,
328
    childcommstatus_id int(11) NOT NULL
329
);
330
331
332
--
333
-- Name: commlineage_commlineage_id_seq; Type: SEQUENCE; Schema: public; Owner: -
334
--
335
336
337
338
339
--
340
-- Name: commlineage_commlineage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
341
--
342
343
344
345
346
--
347
-- Name: commname; Type: TABLE; Schema: public; Owner: -; Tablespace:
348
--
349
350
CREATE TABLE commname (
351
    commname_id int(11) NOT NULL,
352
    commname text NOT NULL,
353
    reference_id int(11),
354
    dateentered timestamp NULL
355
);
356
357
358
--
359
-- Name: commname_commname_id_seq; Type: SEQUENCE; Schema: public; Owner: -
360
--
361
362
363
364
365
--
366
-- Name: commname_commname_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
367
--
368
369
370
371
372
--
373
-- Name: commstatus; Type: TABLE; Schema: public; Owner: -; Tablespace:
374
--
375
376
CREATE TABLE commstatus (
377
    commstatus_id int(11) NOT NULL,
378
    commconcept_id int(11) NOT NULL,
379
    reference_id int(11),
380 841 aaronmk
    commconceptstatus text NOT NULL,
381 689 aaronmk
    commparent_id int(11),
382 841 aaronmk
    commlevel text,
383 689 aaronmk
    commpartycomments text,
384
    party_id int(11) NOT NULL,
385
    startdate timestamp NOT NULL,
386
    stopdate timestamp NULL,
387 841 aaronmk
    accessioncode text
388 689 aaronmk
);
389
390
391
--
392
-- Name: commstatus_commstatus_id_seq; Type: SEQUENCE; Schema: public; Owner: -
393
--
394
395
396
397
398
--
399
-- Name: commstatus_commstatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
400
--
401
402
403
404
405
--
406
-- Name: commusage; Type: TABLE; Schema: public; Owner: -; Tablespace:
407
--
408
409
CREATE TABLE commusage (
410
    commusage_id int(11) NOT NULL,
411
    commname_id int(11) NOT NULL,
412
    commname text,
413
    commconcept_id int(11),
414 841 aaronmk
    commnamestatus text,
415
    classsystem text,
416 689 aaronmk
    party_id int(11),
417
    commstatus_id int(11),
418
    usagestart timestamp NULL,
419
    usagestop timestamp NULL
420
);
421
422
423
--
424
-- Name: commusage_commusage_id_seq; Type: SEQUENCE; Schema: public; Owner: -
425
--
426
427
428
429
430
--
431
-- Name: commusage_commusage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
432
--
433
434
435
436
437
--
438
-- Name: coverindex; Type: TABLE; Schema: public; Owner: -; Tablespace:
439
--
440
441
CREATE TABLE coverindex (
442
    coverindex_id int(11) NOT NULL,
443
    covermethod_id int(11) NOT NULL,
444 841 aaronmk
    covercode text NOT NULL,
445 689 aaronmk
    upperlimit double precision,
446
    lowerlimit double precision,
447
    coverpercent double precision NOT NULL,
448
    indexdescription text
449
);
450
451
452
--
453
-- Name: coverindex_coverindex_id_seq; Type: SEQUENCE; Schema: public; Owner: -
454
--
455
456
457
458
459
--
460
-- Name: coverindex_coverindex_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
461
--
462
463
464
465
466
--
467
-- Name: covermethod; Type: TABLE; Schema: public; Owner: -; Tablespace:
468
--
469
470
CREATE TABLE covermethod (
471
    covermethod_id int(11) NOT NULL,
472
    reference_id int(11),
473 841 aaronmk
    covertype text NOT NULL,
474
    coverestimationmethod text,
475
    accessioncode text
476 689 aaronmk
);
477
478
479
--
480
-- Name: covermethod_covermethod_id_seq; Type: SEQUENCE; Schema: public; Owner: -
481
--
482
483
484
485
486
--
487
-- Name: covermethod_covermethod_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
488
--
489
490
491
492
493
--
494
-- Name: dba_preassignacccode_dba_requestnumber_seq; Type: SEQUENCE; Schema: public; Owner: -
495
--
496
497
498
499
500
--
501
-- Name: definedvalue; Type: TABLE; Schema: public; Owner: -; Tablespace:
502
--
503
504
CREATE TABLE definedvalue (
505
    definedvalue_id int(11) NOT NULL,
506
    userdefined_id int(11) NOT NULL,
507
    tablerecord_id int(11) NOT NULL,
508
    definedvalue text NOT NULL
509
);
510
511
512
--
513
-- Name: definedvalue_definedvalue_id_seq; Type: SEQUENCE; Schema: public; Owner: -
514
--
515
516
517
518
519
--
520
-- Name: definedvalue_definedvalue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
521
--
522
523
524
525
526
--
527
-- Name: disturbanceobs; Type: TABLE; Schema: public; Owner: -; Tablespace:
528
--
529
530
CREATE TABLE disturbanceobs (
531
    disturbanceobs_id int(11) NOT NULL,
532
    locationevent_id int(11) NOT NULL,
533 841 aaronmk
    disturbancetype text NOT NULL,
534
    disturbanceintensity text,
535 689 aaronmk
    disturbanceage double precision,
536
    disturbanceextent double precision,
537 1212 aaronmk
    disturbancecomment text
538 689 aaronmk
);
539
540
541
--
542
-- Name: disturbanceobs_disturbanceobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
543
--
544
545
546
547
548
--
549
-- Name: disturbanceobs_disturbanceobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
550
--
551
552
553
554
555
--
556
-- Name: graphic; Type: TABLE; Schema: public; Owner: -; Tablespace:
557
--
558
559
CREATE TABLE graphic (
560
    graphic_id int(11) NOT NULL,
561
    locationevent_id int(11) NOT NULL,
562 841 aaronmk
    graphicname text,
563 689 aaronmk
    graphiclocation text,
564
    graphicdescription text,
565 841 aaronmk
    graphictype text,
566 689 aaronmk
    graphicdata int(11),
567
    graphicdate timestamp NULL,
568 841 aaronmk
    accessioncode text
569 689 aaronmk
);
570
571
572
--
573
-- Name: graphic_graphic_id_seq; Type: SEQUENCE; Schema: public; Owner: -
574
--
575
576
577
578
579
--
580
-- Name: graphic_graphic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
581
--
582
583
584
585
586
--
587
-- Name: location; Type: TABLE; Schema: public; Owner: -; Tablespace:
588
--
589
590
CREATE TABLE location (
591
    location_id int(11) NOT NULL,
592
    parent_id int(11),
593 1024 aaronmk
    centerlatitude double precision,
594
    centerlongitude double precision,
595 689 aaronmk
    locationaccuracy double precision,
596
    confidentialitystatus int(11) DEFAULT 0 NOT NULL,
597 841 aaronmk
    confidentialityreason text,
598 689 aaronmk
    publiclatitude double precision,
599
    publiclongitude double precision,
600 841 aaronmk
    accessioncode text,
601 690 aaronmk
    sublocationxposition double precision,
602
    sublocationyposition double precision,
603 841 aaronmk
    authore text,
604
    authorn text,
605
    authorzone text,
606
    authordatum text,
607
    authorlocation text,
608 689 aaronmk
    locationnarrative text,
609
    azimuth double precision,
610 841 aaronmk
    shape text,
611 689 aaronmk
    area double precision,
612 841 aaronmk
    standsize text,
613
    placementmethod text,
614 689 aaronmk
    permanence int(1),
615
    layoutnarrative text,
616
    elevation double precision,
617
    elevationaccuracy double precision,
618
    elevationrange double precision,
619
    slopeaspect double precision,
620
    minslopeaspect double precision,
621
    maxslopeaspect double precision,
622
    slopegradient double precision,
623
    minslopegradient double precision,
624
    maxslopegradient double precision,
625 841 aaronmk
    topoposition text,
626
    landform text,
627
    surficialdeposits text,
628
    rocktype text,
629
    stateprovince text,
630
    country text,
631
    submitter_surname text,
632
    submitter_givenname text,
633
    submitter_email text,
634 689 aaronmk
    notespublic int(1),
635
    notesmgt int(1),
636
    revisions int(1),
637
    dateentered timestamp NULL ,
638 690 aaronmk
    locationrationalenarrative text
639 689 aaronmk
);
640
641
642
--
643 1020 aaronmk
-- Name: TABLE location; Type: COMMENT; Schema: public; Owner: -
644
--
645
646
647
648
649
--
650 689 aaronmk
-- Name: location_location_id_seq; Type: SEQUENCE; Schema: public; Owner: -
651
--
652
653
654
655
656
--
657
-- Name: location_location_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
658
--
659
660
661
662
663
--
664 906 aaronmk
-- Name: locationdetermination; Type: TABLE; Schema: public; Owner: -; Tablespace:
665
--
666
667
CREATE TABLE locationdetermination (
668
    locationdetermination_id int(11) NOT NULL,
669
    location_id int(11) NOT NULL,
670 1020 aaronmk
    latitude double precision,
671
    longitude double precision,
672 1023 aaronmk
    footprintgeometry_dwc text,
673 1020 aaronmk
    coordsaccuracy double precision,
674 1023 aaronmk
    namedplace_id int(11),
675
    identifier_id int(11),
676
    determinationdate timestamp NULL,
677 1021 aaronmk
    isoriginal int(1) DEFAULT false NOT NULL,
678
    iscurrent int(1) DEFAULT false NOT NULL,
679 1023 aaronmk
    calculated int(1)
680 906 aaronmk
);
681
682
683
--
684 1021 aaronmk
-- Name: TABLE locationdetermination; Type: COMMENT; Schema: public; Owner: -
685
--
686
687
688
689
690
--
691 1023 aaronmk
-- Name: COLUMN locationdetermination.footprintgeometry_dwc; Type: COMMENT; Schema: public; Owner: -
692 1022 aaronmk
--
693
694
695
696
697
--
698 1023 aaronmk
-- Name: COLUMN locationdetermination.coordsaccuracy; Type: COMMENT; Schema: public; Owner: -
699 1020 aaronmk
--
700
701
702
703
704
--
705 906 aaronmk
-- Name: locationdetermination_locationdetermination_id_seq; Type: SEQUENCE; Schema: public; Owner: -
706
--
707
708
709
710
711
--
712
-- Name: locationdetermination_locationdetermination_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
713
--
714
715
716
717
718
--
719 689 aaronmk
-- Name: locationevent; Type: TABLE; Schema: public; Owner: -; Tablespace:
720
--
721
722
CREATE TABLE locationevent (
723
    locationevent_id int(11) NOT NULL,
724 910 aaronmk
    parent_id int(11),
725 1055 aaronmk
    datasource_id int(11),
726 689 aaronmk
    location_id int(11),
727
    project_id int(11),
728 1076 aaronmk
    authorlocationcode text,
729 841 aaronmk
    accessioncode text,
730
    sourceaccessioncode text,
731 910 aaronmk
    previous_id int(11),
732 841 aaronmk
    dateaccuracy text,
733 1099 aaronmk
    method_id int(11),
734 1215 aaronmk
    temperature double precision,
735
    precipitation double precision,
736 910 aaronmk
    autotaxoncover int(1),
737 689 aaronmk
    originaldata text,
738 841 aaronmk
    effortlevel text,
739
    floristicquality text,
740
    bryophytequality text,
741
    lichenquality text,
742 689 aaronmk
    locationeventnarrative text,
743
    landscapenarrative text,
744 841 aaronmk
    homogeneity text,
745
    phenologicaspect text,
746
    representativeness text,
747
    standmaturity text,
748 689 aaronmk
    successionalstatus text,
749
    basalarea double precision,
750 841 aaronmk
    hydrologicregime text,
751
    soilmoistureregime text,
752
    soildrainage text,
753
    watersalinity text,
754 689 aaronmk
    waterdepth double precision,
755
    shoredistance double precision,
756
    soildepth double precision,
757
    organicdepth double precision,
758
    soiltaxon_id int(11),
759 841 aaronmk
    soiltaxonsrc text,
760 689 aaronmk
    percentbedrock double precision,
761
    percentrockgravel double precision,
762
    percentwood double precision,
763
    percentlitter double precision,
764
    percentbaresoil double precision,
765
    percentwater double precision,
766
    percentother double precision,
767 841 aaronmk
    nameother text,
768 689 aaronmk
    treeht double precision,
769
    shrubht double precision,
770
    fieldht double precision,
771
    nonvascularht double precision,
772
    submergedht double precision,
773
    treecover double precision,
774
    shrubcover double precision,
775
    fieldcover double precision,
776
    nonvascularcover double precision,
777
    floatingcover double precision,
778
    submergedcover double precision,
779 841 aaronmk
    dominantstratum text,
780
    growthform1type text,
781
    growthform2type text,
782
    growthform3type text,
783 689 aaronmk
    growthform1cover double precision,
784
    growthform2cover double precision,
785
    growthform3cover double precision,
786
    totalcover double precision,
787
    notespublic int(1),
788
    notesmgt int(1),
789
    revisions int(1),
790
    obsstartdate timestamp NULL,
791
    obsenddate timestamp NULL,
792
    dateentered timestamp NULL ,
793 841 aaronmk
    toptaxon1name text,
794
    toptaxon2name text,
795
    toptaxon3name text,
796
    toptaxon4name text,
797
    toptaxon5name text,
798 690 aaronmk
    numberoftaxa int(11)
799 689 aaronmk
);
800
801
802
--
803
-- Name: TABLE locationevent; Type: COMMENT; Schema: public; Owner: -
804
--
805
806
807
808
809
--
810
-- Name: locationevent_locationevent_id_seq; Type: SEQUENCE; Schema: public; Owner: -
811
--
812
813
814
815
816
--
817
-- Name: locationevent_locationevent_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
818
--
819
820
821
822
823
--
824
-- Name: locationeventcontributor; Type: TABLE; Schema: public; Owner: -; Tablespace:
825
--
826
827
CREATE TABLE locationeventcontributor (
828
    locationeventcontributor_id int(11) NOT NULL,
829
    locationevent_id int(11) NOT NULL,
830
    party_id int(11) NOT NULL,
831
    role_id int(11) NOT NULL,
832
    contributiondate timestamp NULL
833
);
834
835
836
--
837
-- Name: locationeventcontributor_locationeventcontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: -
838
--
839
840
841
842
843
--
844
-- Name: locationeventcontributor_locationeventcontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
845
--
846
847
848
849
850
--
851
-- Name: locationeventsynonym; Type: TABLE; Schema: public; Owner: -; Tablespace:
852
--
853
854
CREATE TABLE locationeventsynonym (
855
    locationeventsynonym_id int(11) NOT NULL,
856
    synonymlocationevent_id int(11) NOT NULL,
857
    primarylocationevent_id int(11) NOT NULL,
858
    party_id int(11) NOT NULL,
859
    role_id int(11) NOT NULL,
860
    synonymcomment text,
861
    classstartdate timestamp NULL  NOT NULL,
862
    classstopdate timestamp NULL,
863 841 aaronmk
    accessioncode text
864 689 aaronmk
);
865
866
867
--
868
-- Name: locationeventsynonym_locationeventsynonym_id_seq; Type: SEQUENCE; Schema: public; Owner: -
869
--
870
871
872
873
874
--
875
-- Name: locationeventsynonym_locationeventsynonym_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
876
--
877
878
879
880
881
--
882 907 aaronmk
-- Name: method; Type: TABLE; Schema: public; Owner: -; Tablespace:
883
--
884
885
CREATE TABLE method (
886
    method_id int(11) NOT NULL,
887
    reference_id int(11),
888
    name text NOT NULL,
889
    description text,
890 1027 aaronmk
    accessioncode text,
891 1112 aaronmk
    diameterheight double precision,
892 1027 aaronmk
    mindiameter double precision,
893 1112 aaronmk
    maxdiameter double precision,
894 1027 aaronmk
    minheight double precision,
895
    maxheight double precision,
896
    observationtype text,
897
    observationmeasure text,
898 1064 aaronmk
    covermethod_id int(11),
899
    samplingfactor double precision DEFAULT 1 NOT NULL,
900
    coverbasis text,
901 1099 aaronmk
    stemsamplemethod text,
902
    shape text,
903
    length double precision,
904
    width double precision,
905
    radius double precision,
906
    area double precision,
907 1162 aaronmk
    samplearea double precision,
908
    subplotspacing double precision,
909 1168 aaronmk
    subplotmethod_id int(11),
910
    pointsperline int(11)
911 907 aaronmk
);
912
913
914
--
915 1039 aaronmk
-- Name: TABLE method; Type: COMMENT; Schema: public; Owner: -
916
--
917
918
919
920
921
--
922 1100 aaronmk
-- Name: COLUMN method.reference_id; Type: COMMENT; Schema: public; Owner: -
923
--
924
925
926
927
928
--
929 1064 aaronmk
-- Name: COLUMN method.name; Type: COMMENT; Schema: public; Owner: -
930
--
931
932
933
934
935
--
936
-- Name: COLUMN method.description; Type: COMMENT; Schema: public; Owner: -
937
--
938
939
940
941
942
--
943 1112 aaronmk
-- Name: COLUMN method.diameterheight; Type: COMMENT; Schema: public; Owner: -
944 1064 aaronmk
--
945
946
947
948
949
--
950 1112 aaronmk
-- Name: COLUMN method.mindiameter; Type: COMMENT; Schema: public; Owner: -
951 1064 aaronmk
--
952
953
954
955
956
--
957
-- Name: COLUMN method.maxdiameter; Type: COMMENT; Schema: public; Owner: -
958
--
959
960
961
962
963
--
964 1112 aaronmk
-- Name: COLUMN method.minheight; Type: COMMENT; Schema: public; Owner: -
965
--
966
967
968
969
970
--
971 1064 aaronmk
-- Name: COLUMN method.maxheight; Type: COMMENT; Schema: public; Owner: -
972
--
973
974
975
976
977
--
978 1034 aaronmk
-- Name: COLUMN method.observationtype; Type: COMMENT; Schema: public; Owner: -
979
--
980
981
982
983
984
--
985
-- Name: COLUMN method.observationmeasure; Type: COMMENT; Schema: public; Owner: -
986
--
987
988
989
990
991
--
992 1101 aaronmk
-- Name: COLUMN method.samplingfactor; Type: COMMENT; Schema: public; Owner: -
993 1034 aaronmk
--
994
995
996
997
998
--
999 1101 aaronmk
-- Name: COLUMN method.coverbasis; Type: COMMENT; Schema: public; Owner: -
1000 1034 aaronmk
--
1001
1002
1003
1004
1005
--
1006 1101 aaronmk
-- Name: COLUMN method.stemsamplemethod; Type: COMMENT; Schema: public; Owner: -
1007 1064 aaronmk
--
1008
1009
1010
1011
1012
--
1013 1101 aaronmk
-- Name: COLUMN method.shape; Type: COMMENT; Schema: public; Owner: -
1014 1064 aaronmk
--
1015
1016
1017
1018
1019
--
1020 1101 aaronmk
-- Name: COLUMN method.length; Type: COMMENT; Schema: public; Owner: -
1021 1064 aaronmk
--
1022
1023
1024
1025
1026
--
1027 1101 aaronmk
-- Name: COLUMN method.width; Type: COMMENT; Schema: public; Owner: -
1028 1099 aaronmk
--
1029
1030
1031
1032
1033
--
1034 1101 aaronmk
-- Name: COLUMN method.radius; Type: COMMENT; Schema: public; Owner: -
1035 1099 aaronmk
--
1036
1037
1038
1039
1040
--
1041 1101 aaronmk
-- Name: COLUMN method.area; Type: COMMENT; Schema: public; Owner: -
1042 1099 aaronmk
--
1043
1044
1045
1046
1047
--
1048 1101 aaronmk
-- Name: COLUMN method.samplearea; Type: COMMENT; Schema: public; Owner: -
1049 1099 aaronmk
--
1050
1051
1052
1053
1054
--
1055 1162 aaronmk
-- Name: COLUMN method.subplotspacing; Type: COMMENT; Schema: public; Owner: -
1056
--
1057
1058
1059
1060
1061
--
1062
-- Name: COLUMN method.subplotmethod_id; Type: COMMENT; Schema: public; Owner: -
1063
--
1064
1065
1066
1067
1068
--
1069 1168 aaronmk
-- Name: COLUMN method.pointsperline; Type: COMMENT; Schema: public; Owner: -
1070
--
1071
1072
1073
1074
1075
--
1076 1101 aaronmk
-- Name: method_method_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1077 1099 aaronmk
--
1078
1079
1080
1081
1082
--
1083 1101 aaronmk
-- Name: method_method_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1084 1099 aaronmk
--
1085
1086
1087
1088
1089 1101 aaronmk
1090
1091 1099 aaronmk
--
1092 1101 aaronmk
-- Name: methodtaxonclass; Type: TABLE; Schema: public; Owner: -; Tablespace:
1093
--
1094
1095
CREATE TABLE methodtaxonclass (
1096
    methodtaxonclass_id int(11) NOT NULL,
1097
    method_id int(11) NOT NULL,
1098 1160 aaronmk
    plantconcept_id int(11),
1099 1152 aaronmk
    included int(1) NOT NULL,
1100 1160 aaronmk
    submethod_id int(11),
1101 1174 aaronmk
    taxonclass text
1102 1101 aaronmk
);
1103
1104
1105
--
1106
-- Name: COLUMN methodtaxonclass.included; Type: COMMENT; Schema: public; Owner: -
1107
--
1108
1109
1110
1111
1112
--
1113 1105 aaronmk
-- Name: COLUMN methodtaxonclass.submethod_id; Type: COMMENT; Schema: public; Owner: -
1114
--
1115
1116
1117
1118
1119
--
1120 1101 aaronmk
-- Name: methodtaxonclass_methodtaxonclass_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1121
--
1122
1123
1124
1125
1126
--
1127
-- Name: methodtaxonclass_methodtaxonclass_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1128
--
1129
1130
1131
1132
1133
1134
1135
--
1136 689 aaronmk
-- Name: namedplace; Type: TABLE; Schema: public; Owner: -; Tablespace:
1137
--
1138
1139
CREATE TABLE namedplace (
1140
    namedplace_id int(11) NOT NULL,
1141 841 aaronmk
    placesystem text,
1142
    placename text NOT NULL,
1143 689 aaronmk
    placedescription text,
1144 841 aaronmk
    placecode text,
1145 1312 aaronmk
    accessioncode text,
1146 1315 aaronmk
    parent_id int(11),
1147
    rank text
1148 689 aaronmk
);
1149
1150
1151
--
1152
-- Name: namedplace_namedplace_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1153
--
1154
1155
1156
1157
1158
--
1159
-- Name: namedplace_namedplace_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1160
--
1161
1162
1163
1164
1165
--
1166
-- Name: namedplacecorrelation; Type: TABLE; Schema: public; Owner: -; Tablespace:
1167
--
1168
1169
CREATE TABLE namedplacecorrelation (
1170
    namedplacecorrelation_id int(11) NOT NULL,
1171
    parentplace_id int(11) NOT NULL,
1172
    childplace_id int(11) NOT NULL,
1173 841 aaronmk
    placeconvergence text NOT NULL
1174 689 aaronmk
);
1175
1176
1177
--
1178
-- Name: namedplacecorrelation_namedplacecorrelation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1179
--
1180
1181
1182
1183
1184
--
1185
-- Name: namedplacecorrelation_namedplacecorrelation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1186
--
1187
1188
1189
1190
1191
--
1192
-- Name: note; Type: TABLE; Schema: public; Owner: -; Tablespace:
1193
--
1194
1195
CREATE TABLE note (
1196
    note_id int(11) NOT NULL,
1197
    notelink_id int(11) NOT NULL,
1198
    party_id int(11) NOT NULL,
1199
    role_id int(11) NOT NULL,
1200 841 aaronmk
    notetype text NOT NULL,
1201 689 aaronmk
    notetext text NOT NULL,
1202
    notedate timestamp NULL,
1203 841 aaronmk
    accessioncode text
1204 689 aaronmk
);
1205
1206
1207
--
1208
-- Name: note_note_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1209
--
1210
1211
1212
1213
1214
--
1215
-- Name: note_note_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1216
--
1217
1218
1219
1220
1221
--
1222
-- Name: notelink; Type: TABLE; Schema: public; Owner: -; Tablespace:
1223
--
1224
1225
CREATE TABLE notelink (
1226
    notelink_id int(11) NOT NULL,
1227 841 aaronmk
    tablename text NOT NULL,
1228
    attributename text,
1229 689 aaronmk
    tablerecord int(11) NOT NULL
1230
);
1231
1232
1233
--
1234
-- Name: notelink_notelink_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1235
--
1236
1237
1238
1239
1240
--
1241
-- Name: notelink_notelink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1242
--
1243
1244
1245
1246
1247
--
1248
-- Name: party; Type: TABLE; Schema: public; Owner: -; Tablespace:
1249
--
1250
1251
CREATE TABLE party (
1252
    party_id int(11) NOT NULL,
1253 841 aaronmk
    salutation text,
1254
    givenname text,
1255
    middlename text,
1256
    surname text,
1257
    organizationname text,
1258 689 aaronmk
    currentname_id int(11),
1259
    contactinstructions text,
1260 841 aaronmk
    email text,
1261
    partytype text,
1262 689 aaronmk
    partypublic int(1) DEFAULT true,
1263
    d_obscount int(11),
1264 841 aaronmk
    accessioncode text
1265 689 aaronmk
);
1266
1267
1268
--
1269
-- Name: party_party_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1270
--
1271
1272
1273
1274
1275
--
1276
-- Name: party_party_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1277
--
1278
1279
1280
1281
1282
--
1283
-- Name: partymember; Type: TABLE; Schema: public; Owner: -; Tablespace:
1284
--
1285
1286
CREATE TABLE partymember (
1287
    partymember_id int(11) NOT NULL,
1288
    parentparty_id int(11) NOT NULL,
1289
    childparty_id int(11) NOT NULL,
1290
    role_id int(11),
1291
    memberstart timestamp NULL  NOT NULL,
1292
    memberstop timestamp NULL
1293
);
1294
1295
1296
--
1297
-- Name: partymember_partymember_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1298
--
1299
1300
1301
1302
1303
--
1304
-- Name: partymember_partymember_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1305
--
1306
1307
1308
1309
1310
1311
1312
--
1313
-- Name: plant; Type: TABLE; Schema: public; Owner: -; Tablespace:
1314
--
1315
1316
CREATE TABLE plant (
1317
    plant_id int(11) NOT NULL
1318
);
1319
1320
1321
--
1322
-- Name: TABLE plant; Type: COMMENT; Schema: public; Owner: -
1323
--
1324
1325
1326
1327
1328
--
1329
-- Name: plant_plant_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1330
--
1331
1332
1333
1334
1335
--
1336
-- Name: plant_plant_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1337
--
1338
1339
1340
1341
1342
1343
1344
--
1345
-- Name: plantconcept; Type: TABLE; Schema: public; Owner: -; Tablespace:
1346
--
1347
1348
CREATE TABLE plantconcept (
1349
    plantconcept_id int(11) NOT NULL,
1350
    plantname_id int(11) NOT NULL,
1351
    reference_id int(11),
1352 841 aaronmk
    plantcode text,
1353 689 aaronmk
    plantdescription text,
1354
    d_obscount int(11),
1355
    d_currentaccepted int(1),
1356 903 aaronmk
    accessioncode text,
1357
    scope_id int(11)
1358 689 aaronmk
);
1359
1360
1361
--
1362
-- Name: plantconcept_plantconcept_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1363
--
1364
1365
1366
1367
1368
--
1369
-- Name: plantconcept_plantconcept_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1370
--
1371
1372
1373
1374
1375 903 aaronmk
1376
1377 689 aaronmk
--
1378 903 aaronmk
-- Name: plantconceptscope; Type: TABLE; Schema: public; Owner: -; Tablespace:
1379
--
1380
1381
CREATE TABLE plantconceptscope (
1382
    plantconceptscope_id int(11) NOT NULL,
1383
    locationevent_id int(11),
1384 909 aaronmk
    project_id int(11),
1385
    namedplace_id int(11)
1386 903 aaronmk
);
1387
1388
1389
--
1390
-- Name: plantconceptscope_plantconceptscope_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1391
--
1392
1393
1394
1395
1396
--
1397
-- Name: plantconceptscope_plantconceptscope_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1398
--
1399
1400
1401
1402
1403
1404
1405
--
1406 689 aaronmk
-- Name: plantcorrelation; Type: TABLE; Schema: public; Owner: -; Tablespace:
1407
--
1408
1409
CREATE TABLE plantcorrelation (
1410
    plantcorrelation_id int(11) NOT NULL,
1411
    plantstatus_id int(11) NOT NULL,
1412
    plantconcept_id int(11) NOT NULL,
1413 841 aaronmk
    plantconvergence text NOT NULL,
1414 689 aaronmk
    correlationstart timestamp NOT NULL,
1415
    correlationstop timestamp NULL
1416
);
1417
1418
1419
--
1420
-- Name: plantcorrelation_plantcorrelation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1421
--
1422
1423
1424
1425
1426
--
1427
-- Name: plantcorrelation_plantcorrelation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1428
--
1429
1430
1431
1432
1433
--
1434
-- Name: plantlineage; Type: TABLE; Schema: public; Owner: -; Tablespace:
1435
--
1436
1437
CREATE TABLE plantlineage (
1438
    plantlineage_id int(11) NOT NULL,
1439
    childplantstatus_id int(11) NOT NULL,
1440
    parentplantstatus_id int(11) NOT NULL
1441
);
1442
1443
1444
--
1445
-- Name: plantlineage_plantlineage_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1446
--
1447
1448
1449
1450
1451
--
1452
-- Name: plantlineage_plantlineage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1453
--
1454
1455
1456
1457
1458
--
1459
-- Name: plantname; Type: TABLE; Schema: public; Owner: -; Tablespace:
1460
--
1461
1462
CREATE TABLE plantname (
1463
    plantname_id int(11) NOT NULL,
1464 841 aaronmk
    plantname text NOT NULL,
1465 689 aaronmk
    reference_id int(11),
1466 1111 aaronmk
    dateentered timestamp NULL ,
1467
    rank text NOT NULL
1468 689 aaronmk
);
1469
1470
1471
--
1472
-- Name: plantname_plantname_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1473
--
1474
1475
1476
1477
1478
--
1479
-- Name: plantname_plantname_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1480
--
1481
1482
1483
1484
1485
--
1486
-- Name: plantobservation; Type: TABLE; Schema: public; Owner: -; Tablespace:
1487
--
1488
1489
CREATE TABLE plantobservation (
1490
    plantobservation_id int(11) NOT NULL,
1491
    overallheight double precision,
1492
    overallheightaccuracy double precision,
1493 841 aaronmk
    authorplantcode text,
1494
    accessioncode text,
1495 689 aaronmk
    stemcount int(11),
1496 841 aaronmk
    sourceaccessioncode text,
1497 689 aaronmk
    plant_id int(11)
1498
);
1499
1500
1501
--
1502
-- Name: TABLE plantobservation; Type: COMMENT; Schema: public; Owner: -
1503
--
1504
1505
1506
1507
1508
--
1509
-- Name: plantobservation_plantobservation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1510
--
1511
1512
1513
1514
1515
--
1516
-- Name: plantobservation_plantobservation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1517
--
1518
1519
1520
1521
1522
--
1523
-- Name: plantstatus; Type: TABLE; Schema: public; Owner: -; Tablespace:
1524
--
1525
1526
CREATE TABLE plantstatus (
1527
    plantstatus_id int(11) NOT NULL,
1528
    plantconcept_id int(11) NOT NULL,
1529 1102 aaronmk
    party_id int(11),
1530 903 aaronmk
    plantparent_id int(11),
1531 1231 aaronmk
    plantconceptstatus text DEFAULT 'undetermined' NOT NULL,
1532 689 aaronmk
    reference_id int(11),
1533
    plantpartycomments text,
1534 841 aaronmk
    plantparentname text,
1535 689 aaronmk
    startdate timestamp NULL,
1536
    stopdate timestamp NULL,
1537 841 aaronmk
    accessioncode text
1538 689 aaronmk
);
1539
1540
1541
--
1542
-- Name: plantstatus_plantstatus_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1543
--
1544
1545
1546
1547
1548
--
1549
-- Name: plantstatus_plantstatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1550
--
1551
1552
1553
1554
1555
--
1556
-- Name: plantusage; Type: TABLE; Schema: public; Owner: -; Tablespace:
1557
--
1558
1559
CREATE TABLE plantusage (
1560
    plantusage_id int(11) NOT NULL,
1561
    plantname_id int(11) NOT NULL,
1562
    plantconcept_id int(11),
1563 841 aaronmk
    plantnamestatus text,
1564
    plantname text,
1565
    classsystem text,
1566
    acceptedsynonym text,
1567 689 aaronmk
    party_id int(11),
1568
    plantstatus_id int(11),
1569
    usagestart timestamp NULL,
1570
    usagestop timestamp NULL
1571
);
1572
1573
1574
--
1575
-- Name: plantusage_plantusage_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1576
--
1577
1578
1579
1580
1581
--
1582
-- Name: plantusage_plantusage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1583
--
1584
1585
1586
1587
1588
--
1589
-- Name: project; Type: TABLE; Schema: public; Owner: -; Tablespace:
1590
--
1591
1592
CREATE TABLE project (
1593
    project_id int(11) NOT NULL,
1594 841 aaronmk
    projectname text NOT NULL,
1595 689 aaronmk
    projectdescription text,
1596
    startdate timestamp NULL,
1597
    stopdate timestamp NULL,
1598
    d_obscount int(11),
1599
    d_lastlocationaddeddate timestamp NULL,
1600 841 aaronmk
    accessioncode text,
1601 1072 aaronmk
    datasource_id int(11)
1602 689 aaronmk
);
1603
1604
1605
--
1606
-- Name: project_project_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1607
--
1608
1609
1610
1611
1612
--
1613
-- Name: project_project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1614
--
1615
1616
1617
1618
1619
--
1620
-- Name: projectcontributor; Type: TABLE; Schema: public; Owner: -; Tablespace:
1621
--
1622
1623
CREATE TABLE projectcontributor (
1624
    projectcontributor_id int(11) NOT NULL,
1625
    project_id int(11) NOT NULL,
1626
    party_id int(11) NOT NULL,
1627
    role_id int(11),
1628 841 aaronmk
    surname text,
1629
    cheatrole text
1630 689 aaronmk
);
1631
1632
1633
--
1634
-- Name: projectcontributor_projectcontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1635
--
1636
1637
1638
1639
1640
--
1641
-- Name: projectcontributor_projectcontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1642
--
1643
1644
1645
1646
1647
--
1648
-- Name: reference; Type: TABLE; Schema: public; Owner: -; Tablespace:
1649
--
1650
1651
CREATE TABLE reference (
1652
    reference_id int(11) NOT NULL,
1653 841 aaronmk
    shortname text,
1654 689 aaronmk
    fulltext__ text,
1655 841 aaronmk
    referencetype text,
1656
    title text,
1657
    titlesuperior text,
1658 689 aaronmk
    referencejournal_id int(11),
1659 841 aaronmk
    volume text,
1660
    issue text,
1661
    pagerange text,
1662 689 aaronmk
    totalpages int(11),
1663 841 aaronmk
    publisher text,
1664
    publicationplace text,
1665
    isbn text,
1666
    edition text,
1667 689 aaronmk
    numberofvolumes int(11),
1668
    chapternumber int(11),
1669
    reportnumber int(11),
1670 841 aaronmk
    communicationtype text,
1671
    degree text,
1672 689 aaronmk
    url text,
1673
    doi text,
1674
    additionalinfo text,
1675
    pubdate timestamp NULL,
1676
    accessdate timestamp NULL,
1677
    conferencedate timestamp NULL,
1678 841 aaronmk
    accessioncode text
1679 689 aaronmk
);
1680
1681
1682
--
1683
-- Name: reference_reference_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1684
--
1685
1686
1687
1688
1689
--
1690
-- Name: reference_reference_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1691
--
1692
1693
1694
1695
1696
--
1697
-- Name: referencealtident; Type: TABLE; Schema: public; Owner: -; Tablespace:
1698
--
1699
1700
CREATE TABLE referencealtident (
1701
    referencealtident_id int(11) NOT NULL,
1702
    reference_id int(11) NOT NULL,
1703 841 aaronmk
    system text,
1704
    identifier text NOT NULL
1705 689 aaronmk
);
1706
1707
1708
--
1709
-- Name: referencealtident_referencealtident_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1710
--
1711
1712
1713
1714
1715
--
1716
-- Name: referencealtident_referencealtident_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1717
--
1718
1719
1720
1721
1722
--
1723
-- Name: referencecontributor; Type: TABLE; Schema: public; Owner: -; Tablespace:
1724
--
1725
1726
CREATE TABLE referencecontributor (
1727
    referencecontributor_id int(11) NOT NULL,
1728
    reference_id int(11) NOT NULL,
1729
    referenceparty_id int(11) NOT NULL,
1730 841 aaronmk
    roletype text,
1731 689 aaronmk
    `position` int(11)
1732
);
1733
1734
1735
--
1736
-- Name: referencecontributor_referencecontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1737
--
1738
1739
1740
1741
1742
--
1743
-- Name: referencecontributor_referencecontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1744
--
1745
1746
1747
1748
1749
--
1750
-- Name: referencejournal; Type: TABLE; Schema: public; Owner: -; Tablespace:
1751
--
1752
1753
CREATE TABLE referencejournal (
1754
    referencejournal_id int(11) NOT NULL,
1755 841 aaronmk
    journal text NOT NULL,
1756
    issn text,
1757
    abbreviation text,
1758
    accessioncode text
1759 689 aaronmk
);
1760
1761
1762
--
1763
-- Name: referencejournal_referencejournal_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1764
--
1765
1766
1767
1768
1769
--
1770
-- Name: referencejournal_referencejournal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1771
--
1772
1773
1774
1775
1776
--
1777
-- Name: referenceparty; Type: TABLE; Schema: public; Owner: -; Tablespace:
1778
--
1779
1780
CREATE TABLE referenceparty (
1781
    referenceparty_id int(11) NOT NULL,
1782 841 aaronmk
    type text,
1783
    positionname text,
1784
    salutation text,
1785
    givenname text,
1786
    surname text,
1787
    suffix text,
1788
    organizationname text,
1789 689 aaronmk
    currentparty_id int(11),
1790 841 aaronmk
    accessioncode text
1791 689 aaronmk
);
1792
1793
1794
--
1795
-- Name: referenceparty_referenceparty_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1796
--
1797
1798
1799
1800
1801
--
1802
-- Name: referenceparty_referenceparty_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1803
--
1804
1805
1806
1807
1808
--
1809
-- Name: revision; Type: TABLE; Schema: public; Owner: -; Tablespace:
1810
--
1811
1812
CREATE TABLE revision (
1813
    revision_id int(11) NOT NULL,
1814 841 aaronmk
    tablename text NOT NULL,
1815
    tableattribute text NOT NULL,
1816 689 aaronmk
    tablerecord int(11) NOT NULL,
1817
    previousvaluetext text NOT NULL,
1818 841 aaronmk
    previousvaluetype text NOT NULL,
1819 689 aaronmk
    previousrevision_id int(11),
1820
    revisiondate timestamp NOT NULL
1821
);
1822
1823
1824
--
1825
-- Name: revision_revision_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1826
--
1827
1828
1829
1830
1831
--
1832
-- Name: revision_revision_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1833
--
1834
1835
1836
1837
1838
--
1839
-- Name: role; Type: TABLE; Schema: public; Owner: -; Tablespace:
1840
--
1841
1842
CREATE TABLE role (
1843
    role_id int(11) NOT NULL,
1844 841 aaronmk
    rolecode text NOT NULL,
1845
    roledescription text,
1846 689 aaronmk
    roleproject int(11),
1847
    roleobservation int(11),
1848
    roletaxonint int(11),
1849
    roleclassint int(11),
1850 841 aaronmk
    accessioncode text
1851 689 aaronmk
);
1852
1853
1854
--
1855
-- Name: role_role_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1856
--
1857
1858
1859
1860
1861
--
1862
-- Name: role_role_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1863
--
1864
1865
1866
1867
1868
--
1869
-- Name: soilobs; Type: TABLE; Schema: public; Owner: -; Tablespace:
1870
--
1871
1872
CREATE TABLE soilobs (
1873
    soilobs_id int(11) NOT NULL,
1874
    locationevent_id int(11) NOT NULL,
1875 1231 aaronmk
    horizon text DEFAULT 'unknown' NOT NULL,
1876 1228 aaronmk
    description text,
1877
    depthtop double precision,
1878
    depthbottom double precision,
1879
    color text,
1880
    texture text,
1881
    organic double precision,
1882
    sand double precision,
1883
    silt double precision,
1884
    clay double precision,
1885
    coarse double precision,
1886
    ph double precision,
1887 1224 aaronmk
    acidity double precision,
1888 689 aaronmk
    basesaturation double precision,
1889 1224 aaronmk
    cationexchangecapacity double precision,
1890
    conductivity double precision,
1891
    carbon double precision,
1892
    phosphorus double precision,
1893
    potassium double precision,
1894
    magnesium double precision,
1895
    nitrogen double precision,
1896
    calcium double precision,
1897
    sodium double precision
1898 689 aaronmk
);
1899
1900
1901
--
1902 1228 aaronmk
-- Name: COLUMN soilobs.organic; Type: COMMENT; Schema: public; Owner: -
1903 1224 aaronmk
--
1904
1905
1906
1907
1908
--
1909 1228 aaronmk
-- Name: COLUMN soilobs.sand; Type: COMMENT; Schema: public; Owner: -
1910 1224 aaronmk
--
1911
1912
1913
1914
1915
--
1916 1228 aaronmk
-- Name: COLUMN soilobs.silt; Type: COMMENT; Schema: public; Owner: -
1917 1224 aaronmk
--
1918
1919
1920
1921
1922
--
1923 1228 aaronmk
-- Name: COLUMN soilobs.clay; Type: COMMENT; Schema: public; Owner: -
1924 1224 aaronmk
--
1925
1926
1927
1928
1929
--
1930 1228 aaronmk
-- Name: COLUMN soilobs.coarse; Type: COMMENT; Schema: public; Owner: -
1931 1224 aaronmk
--
1932
1933
1934
1935
1936
--
1937
-- Name: COLUMN soilobs.acidity; Type: COMMENT; Schema: public; Owner: -
1938
--
1939
1940
1941
1942
1943
--
1944
-- Name: COLUMN soilobs.basesaturation; Type: COMMENT; Schema: public; Owner: -
1945
--
1946
1947
1948
1949
1950
--
1951
-- Name: COLUMN soilobs.carbon; Type: COMMENT; Schema: public; Owner: -
1952
--
1953
1954
1955
1956
1957
--
1958
-- Name: COLUMN soilobs.phosphorus; Type: COMMENT; Schema: public; Owner: -
1959
--
1960
1961
1962
1963
1964
--
1965
-- Name: COLUMN soilobs.potassium; Type: COMMENT; Schema: public; Owner: -
1966
--
1967
1968
1969
1970
1971
--
1972
-- Name: COLUMN soilobs.magnesium; Type: COMMENT; Schema: public; Owner: -
1973
--
1974
1975
1976
1977
1978
--
1979
-- Name: COLUMN soilobs.nitrogen; Type: COMMENT; Schema: public; Owner: -
1980
--
1981
1982
1983
1984
1985
--
1986
-- Name: COLUMN soilobs.calcium; Type: COMMENT; Schema: public; Owner: -
1987
--
1988
1989
1990
1991
1992
--
1993
-- Name: COLUMN soilobs.sodium; Type: COMMENT; Schema: public; Owner: -
1994
--
1995
1996
1997
1998
1999
--
2000 689 aaronmk
-- Name: soilobs_soilobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2001
--
2002
2003
2004
2005
2006
--
2007
-- Name: soilobs_soilobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2008
--
2009
2010
2011
2012
2013
--
2014
-- Name: soiltaxon; Type: TABLE; Schema: public; Owner: -; Tablespace:
2015
--
2016
2017
CREATE TABLE soiltaxon (
2018
    soiltaxon_id int(11) NOT NULL,
2019 841 aaronmk
    soilcode text,
2020
    soilname text,
2021 689 aaronmk
    soillevel int(11),
2022
    soilparent_id int(11),
2023 841 aaronmk
    soilframework text,
2024
    accessioncode text
2025 689 aaronmk
);
2026
2027
2028
--
2029
-- Name: soiltaxon_soiltaxon_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2030
--
2031
2032
2033
2034
2035
--
2036
-- Name: soiltaxon_soiltaxon_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2037
--
2038
2039
2040
2041
2042
2043
2044
--
2045
-- Name: specimen; Type: TABLE; Schema: public; Owner: -; Tablespace:
2046
--
2047
2048
CREATE TABLE specimen (
2049
    specimen_id int(11) NOT NULL
2050
);
2051
2052
2053
--
2054
-- Name: TABLE specimen; Type: COMMENT; Schema: public; Owner: -
2055
--
2056
2057
2058
2059
2060
--
2061
-- Name: specimen_specimen_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2062
--
2063
2064
2065
2066
2067
--
2068
-- Name: specimen_specimen_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2069
--
2070
2071
2072
2073
2074
--
2075
-- Name: specimenreplicate; Type: TABLE; Schema: public; Owner: -; Tablespace:
2076
--
2077
2078
CREATE TABLE specimenreplicate (
2079
    specimenreplicate_id int(11) NOT NULL,
2080 1053 aaronmk
    datasource_id int(11) NOT NULL,
2081 841 aaronmk
    collectioncode_dwc text,
2082
    catalognumber_dwc text,
2083 689 aaronmk
    collectiondate timestamp NULL,
2084
    museum_id int(11),
2085 841 aaronmk
    sourceaccessioncode text,
2086
    accessioncode text,
2087 689 aaronmk
    taxonoccurrence_id int(11) NOT NULL,
2088 841 aaronmk
    collectionnumber text,
2089 916 aaronmk
    specimen_id int(11),
2090 1203 aaronmk
    description text,
2091
    verbatimcollectorname text
2092 689 aaronmk
);
2093
2094
2095
--
2096
-- Name: TABLE specimenreplicate; Type: COMMENT; Schema: public; Owner: -
2097
--
2098
2099
2100
2101
2102
--
2103
-- Name: COLUMN specimenreplicate.collectioncode_dwc; Type: COMMENT; Schema: public; Owner: -
2104
--
2105
2106
2107
2108
2109
--
2110
-- Name: COLUMN specimenreplicate.collectionnumber; Type: COMMENT; Schema: public; Owner: -
2111
--
2112
2113
2114
2115
2116
--
2117
-- Name: specimenreplicate_specimenreplicate_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2118
--
2119
2120
2121
2122
2123
--
2124
-- Name: specimenreplicate_specimenreplicate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2125
--
2126
2127
2128
2129
2130
2131
2132
--
2133
-- Name: stemobservation; Type: TABLE; Schema: public; Owner: -; Tablespace:
2134
--
2135
2136
CREATE TABLE stemobservation (
2137
    stemobservation_id int(11) NOT NULL,
2138
    plantobservation_id int(11) NOT NULL,
2139 1210 aaronmk
    sourceaccessioncode text,
2140 841 aaronmk
    authorstemcode text,
2141 689 aaronmk
    xposition double precision,
2142
    yposition double precision,
2143 1209 aaronmk
    diameterbreastheight double precision,
2144 1210 aaronmk
    basaldiameter double precision,
2145
    diameteraccuracy double precision,
2146 689 aaronmk
    height double precision,
2147 1211 aaronmk
    heightfirstbranch double precision,
2148 689 aaronmk
    heightaccuracy double precision,
2149 1210 aaronmk
    health text,
2150 689 aaronmk
    age double precision,
2151 1212 aaronmk
    accessioncode text
2152 689 aaronmk
);
2153
2154
2155
--
2156
-- Name: TABLE stemobservation; Type: COMMENT; Schema: public; Owner: -
2157
--
2158
2159
2160
2161
2162
--
2163
-- Name: stemobservation_stemobservation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2164
--
2165
2166
2167
2168
2169
--
2170
-- Name: stemobservation_stemobservation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2171
--
2172
2173
2174
2175
2176 1058 aaronmk
2177
2178 689 aaronmk
--
2179 1058 aaronmk
-- Name: stemtag; Type: TABLE; Schema: public; Owner: -; Tablespace:
2180
--
2181
2182
CREATE TABLE stemtag (
2183
    stemtag_id int(11) NOT NULL,
2184
    stemobservation_id int(11) NOT NULL,
2185
    tag text NOT NULL,
2186
    iscurrent int(1) DEFAULT true NOT NULL
2187
);
2188
2189
2190
--
2191
-- Name: stemtag_stemtag_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2192
--
2193
2194
2195
2196
2197
--
2198
-- Name: stemtag_stemtag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2199
--
2200
2201
2202
2203
2204
2205
2206
--
2207 689 aaronmk
-- Name: stratum; Type: TABLE; Schema: public; Owner: -; Tablespace:
2208
--
2209
2210
CREATE TABLE stratum (
2211
    stratum_id int(11) NOT NULL,
2212
    locationevent_id int(11) NOT NULL,
2213
    stratumheight double precision,
2214
    stratumbase double precision,
2215
    stratumcover double precision,
2216 1029 aaronmk
    area double precision,
2217
    method_id int(11)
2218 689 aaronmk
);
2219
2220
2221
--
2222
-- Name: stratum_stratum_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2223
--
2224
2225
2226
2227
2228
--
2229
-- Name: stratum_stratum_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2230
--
2231
2232
2233
2234
2235
--
2236
-- Name: taxonalt; Type: TABLE; Schema: public; Owner: -; Tablespace:
2237
--
2238
2239
CREATE TABLE taxonalt (
2240
    taxonalt_id int(11) NOT NULL,
2241
    taxondetermination_id int(11) NOT NULL,
2242
    plantconcept_id int(11) NOT NULL,
2243 841 aaronmk
    taxonaltfit text,
2244
    taxonaltconfidence text,
2245 1212 aaronmk
    taxonaltnotes text
2246 689 aaronmk
);
2247
2248
2249
--
2250
-- Name: taxonalt_taxonalt_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2251
--
2252
2253
2254
2255
2256
--
2257
-- Name: taxonalt_taxonalt_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2258
--
2259
2260
2261
2262
2263
--
2264
-- Name: taxondetermination; Type: TABLE; Schema: public; Owner: -; Tablespace:
2265
--
2266
2267
CREATE TABLE taxondetermination (
2268
    taxondetermination_id int(11) NOT NULL,
2269
    taxonoccurrence_id int(11) NOT NULL,
2270
    plantconcept_id int(11) NOT NULL,
2271
    party_id int(11),
2272
    role_id int(11) NOT NULL,
2273 841 aaronmk
    determinationtype text,
2274 689 aaronmk
    reference_id int(11),
2275
    isoriginal int(1) DEFAULT false NOT NULL,
2276
    iscurrent int(1) DEFAULT false NOT NULL,
2277 841 aaronmk
    taxonfit text,
2278
    taxonconfidence text,
2279
    grouptype text,
2280 689 aaronmk
    notes text,
2281
    notespublic int(1),
2282
    notesmgt int(1),
2283
    revisions int(1),
2284
    determinationdate timestamp NULL,
2285 903 aaronmk
    accessioncode text
2286 689 aaronmk
);
2287
2288
2289
--
2290
-- Name: TABLE taxondetermination; Type: COMMENT; Schema: public; Owner: -
2291
--
2292
2293
2294
2295
2296
--
2297
-- Name: taxondetermination_taxondetermination_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2298
--
2299
2300
2301
2302
2303
--
2304
-- Name: taxondetermination_taxondetermination_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2305
--
2306
2307
2308
2309
2310
--
2311
-- Name: taxonoccurrence; Type: TABLE; Schema: public; Owner: -; Tablespace:
2312
--
2313
2314
CREATE TABLE taxonoccurrence (
2315
    taxonoccurrence_id int(11) NOT NULL,
2316
    locationevent_id int(11),
2317 1203 aaronmk
    accessioncode text
2318 689 aaronmk
);
2319
2320
2321
--
2322
-- Name: TABLE taxonoccurrence; Type: COMMENT; Schema: public; Owner: -
2323
--
2324
2325
2326
2327
2328
--
2329
-- Name: taxonoccurrence_taxonoccurrence_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2330
--
2331
2332
2333
2334
2335
--
2336
-- Name: taxonoccurrence_taxonoccurrence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2337
--
2338
2339
2340
2341
2342
--
2343
-- Name: telephone; Type: TABLE; Schema: public; Owner: -; Tablespace:
2344
--
2345
2346
CREATE TABLE telephone (
2347
    telephone_id int(11) NOT NULL,
2348
    party_id int(11) NOT NULL,
2349 841 aaronmk
    phonenumber text NOT NULL,
2350
    phonetype text NOT NULL
2351 689 aaronmk
);
2352
2353
2354
--
2355
-- Name: telephone_telephone_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2356
--
2357
2358
2359
2360
2361
--
2362
-- Name: telephone_telephone_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2363
--
2364
2365
2366
2367
2368
2369
2370
--
2371
-- Name: trait; Type: TABLE; Schema: public; Owner: -; Tablespace:
2372
--
2373
2374
CREATE TABLE trait (
2375
    trait_id int(11) NOT NULL,
2376
    stemobservation_id int(11) NOT NULL,
2377 841 aaronmk
    type text NOT NULL,
2378
    value text
2379 689 aaronmk
);
2380
2381
2382
--
2383
-- Name: trait_trait_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2384
--
2385
2386
2387
2388
2389
--
2390
-- Name: trait_trait_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2391
--
2392
2393
2394
2395
2396
2397
2398
--
2399
-- Name: userdefined; Type: TABLE; Schema: public; Owner: -; Tablespace:
2400
--
2401
2402
CREATE TABLE userdefined (
2403
    userdefined_id int(11) NOT NULL,
2404 1221 aaronmk
    userdefinedname text NOT NULL,
2405 689 aaronmk
    userdefinedmetadata text,
2406 841 aaronmk
    userdefinedcategory text,
2407 1231 aaronmk
    userdefinedtype text DEFAULT 'text' NOT NULL,
2408 841 aaronmk
    tablename text NOT NULL,
2409
    accessioncode text
2410 689 aaronmk
);
2411
2412
2413
--
2414
-- Name: userdefined_userdefined_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2415
--
2416
2417
2418
2419
2420
--
2421
-- Name: userdefined_userdefined_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2422
--
2423
2424
2425
2426
2427
2428
2429
--
2430
-- Name: voucher; Type: TABLE; Schema: public; Owner: -; Tablespace:
2431
--
2432
2433
CREATE TABLE voucher (
2434
    voucher_id int(11) NOT NULL,
2435
    taxonoccurrence_id int(11) NOT NULL,
2436
    specimenreplicate_id int(11) NOT NULL,
2437 841 aaronmk
    accessioncode text
2438 689 aaronmk
);
2439
2440
2441
--
2442
-- Name: voucher_voucher_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2443
--
2444
2445
2446
2447
2448
--
2449
-- Name: voucher_voucher_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2450
--
2451
2452
2453
2454
2455
--
2456
-- Name: address_id; Type: DEFAULT; Schema: public; Owner: -
2457
--
2458
2459
2460
2461
2462
--
2463
-- Name: aggregateoccurrence_id; Type: DEFAULT; Schema: public; Owner: -
2464
--
2465
2466
2467
2468
2469
--
2470
-- Name: classcontributor_id; Type: DEFAULT; Schema: public; Owner: -
2471
--
2472
2473
2474
2475
2476
--
2477
-- Name: commclass_id; Type: DEFAULT; Schema: public; Owner: -
2478
--
2479
2480
2481
2482
2483
--
2484
-- Name: commconcept_id; Type: DEFAULT; Schema: public; Owner: -
2485
--
2486
2487
2488
2489
2490
--
2491
-- Name: commcorrelation_id; Type: DEFAULT; Schema: public; Owner: -
2492
--
2493
2494
2495
2496
2497
--
2498
-- Name: commdetermination_id; Type: DEFAULT; Schema: public; Owner: -
2499
--
2500
2501
2502
2503
2504
--
2505
-- Name: commlineage_id; Type: DEFAULT; Schema: public; Owner: -
2506
--
2507
2508
2509
2510
2511
--
2512
-- Name: commname_id; Type: DEFAULT; Schema: public; Owner: -
2513
--
2514
2515
2516
2517
2518
--
2519
-- Name: commstatus_id; Type: DEFAULT; Schema: public; Owner: -
2520
--
2521
2522
2523
2524
2525
--
2526
-- Name: commusage_id; Type: DEFAULT; Schema: public; Owner: -
2527
--
2528
2529
2530
2531
2532
--
2533
-- Name: coverindex_id; Type: DEFAULT; Schema: public; Owner: -
2534
--
2535
2536
2537
2538
2539
--
2540
-- Name: covermethod_id; Type: DEFAULT; Schema: public; Owner: -
2541
--
2542
2543
2544
2545
2546
--
2547
-- Name: definedvalue_id; Type: DEFAULT; Schema: public; Owner: -
2548
--
2549
2550
2551
2552
2553
--
2554
-- Name: disturbanceobs_id; Type: DEFAULT; Schema: public; Owner: -
2555
--
2556
2557
2558
2559
2560
--
2561
-- Name: graphic_id; Type: DEFAULT; Schema: public; Owner: -
2562
--
2563
2564
2565
2566
2567
--
2568
-- Name: location_id; Type: DEFAULT; Schema: public; Owner: -
2569
--
2570
2571
2572
2573
2574
--
2575 906 aaronmk
-- Name: locationdetermination_id; Type: DEFAULT; Schema: public; Owner: -
2576 689 aaronmk
--
2577
2578
2579
2580
2581
--
2582 906 aaronmk
-- Name: locationevent_id; Type: DEFAULT; Schema: public; Owner: -
2583 689 aaronmk
--
2584
2585
2586
2587
2588
--
2589 906 aaronmk
-- Name: locationeventcontributor_id; Type: DEFAULT; Schema: public; Owner: -
2590 689 aaronmk
--
2591
2592
2593
2594
2595
--
2596 906 aaronmk
-- Name: locationeventsynonym_id; Type: DEFAULT; Schema: public; Owner: -
2597 689 aaronmk
--
2598
2599
2600
2601
2602
--
2603 907 aaronmk
-- Name: method_id; Type: DEFAULT; Schema: public; Owner: -
2604
--
2605
2606
2607
2608
2609
--
2610 1101 aaronmk
-- Name: methodtaxonclass_id; Type: DEFAULT; Schema: public; Owner: -
2611
--
2612
2613
2614
2615
2616
--
2617 689 aaronmk
-- Name: namedplace_id; Type: DEFAULT; Schema: public; Owner: -
2618
--
2619
2620
2621
2622
2623
--
2624
-- Name: namedplacecorrelation_id; Type: DEFAULT; Schema: public; Owner: -
2625
--
2626
2627
2628
2629
2630
--
2631
-- Name: note_id; Type: DEFAULT; Schema: public; Owner: -
2632
--
2633
2634
2635
2636
2637
--
2638
-- Name: notelink_id; Type: DEFAULT; Schema: public; Owner: -
2639
--
2640
2641
2642
2643
2644
--
2645
-- Name: party_id; Type: DEFAULT; Schema: public; Owner: -
2646
--
2647
2648
2649
2650
2651
--
2652
-- Name: partymember_id; Type: DEFAULT; Schema: public; Owner: -
2653
--
2654
2655
2656
2657
2658
--
2659
-- Name: plant_id; Type: DEFAULT; Schema: public; Owner: -
2660
--
2661
2662
2663
2664
2665
--
2666
-- Name: plantconcept_id; Type: DEFAULT; Schema: public; Owner: -
2667
--
2668
2669
2670
2671
2672
--
2673 903 aaronmk
-- Name: plantconceptscope_id; Type: DEFAULT; Schema: public; Owner: -
2674
--
2675
2676
2677
2678
2679
--
2680 689 aaronmk
-- Name: plantcorrelation_id; Type: DEFAULT; Schema: public; Owner: -
2681
--
2682
2683
2684
2685
2686
--
2687
-- Name: plantlineage_id; Type: DEFAULT; Schema: public; Owner: -
2688
--
2689
2690
2691
2692
2693
--
2694
-- Name: plantname_id; Type: DEFAULT; Schema: public; Owner: -
2695
--
2696
2697
2698
2699
2700
--
2701
-- Name: plantobservation_id; Type: DEFAULT; Schema: public; Owner: -
2702
--
2703
2704
2705
2706
2707
--
2708
-- Name: plantstatus_id; Type: DEFAULT; Schema: public; Owner: -
2709
--
2710
2711
2712
2713
2714
--
2715
-- Name: plantusage_id; Type: DEFAULT; Schema: public; Owner: -
2716
--
2717
2718
2719
2720
2721
--
2722
-- Name: project_id; Type: DEFAULT; Schema: public; Owner: -
2723
--
2724
2725
2726
2727
2728
--
2729
-- Name: projectcontributor_id; Type: DEFAULT; Schema: public; Owner: -
2730
--
2731
2732
2733
2734
2735
--
2736
-- Name: reference_id; Type: DEFAULT; Schema: public; Owner: -
2737
--
2738
2739
2740
2741
2742
--
2743
-- Name: referencealtident_id; Type: DEFAULT; Schema: public; Owner: -
2744
--
2745
2746
2747
2748
2749
--
2750
-- Name: referencecontributor_id; Type: DEFAULT; Schema: public; Owner: -
2751
--
2752
2753
2754
2755
2756
--
2757
-- Name: referencejournal_id; Type: DEFAULT; Schema: public; Owner: -
2758
--
2759
2760
2761
2762
2763
--
2764
-- Name: referenceparty_id; Type: DEFAULT; Schema: public; Owner: -
2765
--
2766
2767
2768
2769
2770
--
2771
-- Name: revision_id; Type: DEFAULT; Schema: public; Owner: -
2772
--
2773
2774
2775
2776
2777
--
2778
-- Name: role_id; Type: DEFAULT; Schema: public; Owner: -
2779
--
2780
2781
2782
2783
2784
--
2785
-- Name: soilobs_id; Type: DEFAULT; Schema: public; Owner: -
2786
--
2787
2788
2789
2790
2791
--
2792
-- Name: soiltaxon_id; Type: DEFAULT; Schema: public; Owner: -
2793
--
2794
2795
2796
2797
2798
--
2799
-- Name: specimen_id; Type: DEFAULT; Schema: public; Owner: -
2800
--
2801
2802
2803
2804
2805
--
2806
-- Name: specimenreplicate_id; Type: DEFAULT; Schema: public; Owner: -
2807
--
2808
2809
2810
2811
2812
--
2813
-- Name: stemobservation_id; Type: DEFAULT; Schema: public; Owner: -
2814
--
2815
2816
2817
2818
2819
--
2820 1058 aaronmk
-- Name: stemtag_id; Type: DEFAULT; Schema: public; Owner: -
2821
--
2822
2823
2824
2825
2826
--
2827 689 aaronmk
-- Name: stratum_id; Type: DEFAULT; Schema: public; Owner: -
2828
--
2829
2830
2831
2832
2833
--
2834
-- Name: taxonalt_id; Type: DEFAULT; Schema: public; Owner: -
2835
--
2836
2837
2838
2839
2840
--
2841
-- Name: taxondetermination_id; Type: DEFAULT; Schema: public; Owner: -
2842
--
2843
2844
2845
2846
2847
--
2848
-- Name: taxonoccurrence_id; Type: DEFAULT; Schema: public; Owner: -
2849
--
2850
2851
2852
2853
2854
--
2855
-- Name: telephone_id; Type: DEFAULT; Schema: public; Owner: -
2856
--
2857
2858
2859
2860
2861
--
2862
-- Name: trait_id; Type: DEFAULT; Schema: public; Owner: -
2863
--
2864
2865
2866
2867
2868
--
2869
-- Name: userdefined_id; Type: DEFAULT; Schema: public; Owner: -
2870
--
2871
2872
2873
2874
2875
--
2876
-- Name: voucher_id; Type: DEFAULT; Schema: public; Owner: -
2877
--
2878
2879
2880
2881
2882
--
2883
-- Name: address_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2884
--
2885
2886
ALTER TABLE address
2887
    ADD CONSTRAINT address_pkey PRIMARY KEY (address_id);
2888
2889
2890
--
2891 1113 aaronmk
-- Name: aggregateoccurrence_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2892 689 aaronmk
--
2893
2894
ALTER TABLE aggregateoccurrence
2895 1113 aaronmk
    ADD CONSTRAINT aggregateoccurrence_pkey PRIMARY KEY (aggregateoccurrence_id);
2896 689 aaronmk
2897
2898
--
2899 1150 aaronmk
-- Name: aggregateoccurrence_plantobservation_1_to_1; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2900
--
2901
2902
ALTER TABLE aggregateoccurrence
2903
    ADD CONSTRAINT aggregateoccurrence_plantobservation_1_to_1 UNIQUE (plantobservation_id);
2904
2905
2906
--
2907 1113 aaronmk
-- Name: aggregateoccurrence_unique_accessioncode; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2908 689 aaronmk
--
2909
2910
ALTER TABLE aggregateoccurrence
2911 1113 aaronmk
    ADD CONSTRAINT aggregateoccurrence_unique_accessioncode UNIQUE (taxonoccurrence_id, sourceaccessioncode);
2912 689 aaronmk
2913
2914
--
2915
-- Name: classcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2916
--
2917
2918
ALTER TABLE classcontributor
2919
    ADD CONSTRAINT classcontributor_pkey PRIMARY KEY (classcontributor_id);
2920
2921
2922
--
2923 1113 aaronmk
-- Name: commclass_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2924 689 aaronmk
--
2925
2926
ALTER TABLE commclass
2927 1113 aaronmk
    ADD CONSTRAINT commclass_pkey PRIMARY KEY (commclass_id);
2928 689 aaronmk
2929
2930
--
2931 1113 aaronmk
-- Name: commclass_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2932 689 aaronmk
--
2933
2934
ALTER TABLE commclass
2935 1113 aaronmk
    ADD CONSTRAINT commclass_unique UNIQUE (locationevent_id, classnotes);
2936 689 aaronmk
2937
2938
--
2939 1113 aaronmk
-- Name: commconcept_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2940 689 aaronmk
--
2941
2942
ALTER TABLE commconcept
2943 1113 aaronmk
    ADD CONSTRAINT commconcept_pkey PRIMARY KEY (commconcept_id);
2944 689 aaronmk
2945
2946
--
2947 1113 aaronmk
-- Name: commconcept_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2948 689 aaronmk
--
2949
2950
ALTER TABLE commconcept
2951 1113 aaronmk
    ADD CONSTRAINT commconcept_unique UNIQUE (commname_id);
2952 689 aaronmk
2953
2954
--
2955
-- Name: commcorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2956
--
2957
2958
ALTER TABLE commcorrelation
2959
    ADD CONSTRAINT commcorrelation_pkey PRIMARY KEY (commcorrelation_id);
2960
2961
2962
--
2963 1113 aaronmk
-- Name: commdetermination_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2964 689 aaronmk
--
2965
2966
ALTER TABLE commdetermination
2967 1113 aaronmk
    ADD CONSTRAINT commdetermination_pkey PRIMARY KEY (commdetermination_id);
2968 689 aaronmk
2969
2970
--
2971 1113 aaronmk
-- Name: commdetermination_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2972 689 aaronmk
--
2973
2974
ALTER TABLE commdetermination
2975 1113 aaronmk
    ADD CONSTRAINT commdetermination_unique UNIQUE (commclass_id, commconcept_id);
2976 689 aaronmk
2977
2978
--
2979
-- Name: commlineage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2980
--
2981
2982
ALTER TABLE commlineage
2983
    ADD CONSTRAINT commlineage_pkey PRIMARY KEY (commlineage_id);
2984
2985
2986
--
2987 1113 aaronmk
-- Name: commname_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2988 689 aaronmk
--
2989
2990
ALTER TABLE commname
2991 1113 aaronmk
    ADD CONSTRAINT commname_pkey PRIMARY KEY (commname_id);
2992 689 aaronmk
2993
2994
--
2995 1113 aaronmk
-- Name: commname_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
2996 689 aaronmk
--
2997
2998
ALTER TABLE commname
2999 1113 aaronmk
    ADD CONSTRAINT commname_unique UNIQUE (commname);
3000 689 aaronmk
3001
3002
--
3003
-- Name: commstatus_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3004
--
3005
3006
ALTER TABLE commstatus
3007
    ADD CONSTRAINT commstatus_pkey PRIMARY KEY (commstatus_id);
3008
3009
3010
--
3011
-- Name: commusage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3012
--
3013
3014
ALTER TABLE commusage
3015
    ADD CONSTRAINT commusage_pkey PRIMARY KEY (commusage_id);
3016
3017
3018
--
3019
-- Name: coverindex_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3020
--
3021
3022
ALTER TABLE coverindex
3023
    ADD CONSTRAINT coverindex_pkey PRIMARY KEY (coverindex_id);
3024
3025
3026
--
3027
-- Name: covermethod_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3028
--
3029
3030
ALTER TABLE covermethod
3031
    ADD CONSTRAINT covermethod_pkey PRIMARY KEY (covermethod_id);
3032
3033
3034
--
3035
-- Name: definedvalue_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3036
--
3037
3038
ALTER TABLE definedvalue
3039
    ADD CONSTRAINT definedvalue_pkey PRIMARY KEY (definedvalue_id);
3040
3041
3042
--
3043 1221 aaronmk
-- Name: definedvalue_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3044
--
3045
3046
ALTER TABLE definedvalue
3047
    ADD CONSTRAINT definedvalue_unique UNIQUE (userdefined_id, tablerecord_id);
3048
3049
3050
--
3051 689 aaronmk
-- Name: disturbanceobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3052
--
3053
3054
ALTER TABLE disturbanceobs
3055
    ADD CONSTRAINT disturbanceobs_pkey PRIMARY KEY (disturbanceobs_id);
3056
3057
3058
--
3059
-- Name: graphic_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3060
--
3061
3062
ALTER TABLE graphic
3063
    ADD CONSTRAINT graphic_pkey PRIMARY KEY (graphic_id);
3064
3065
3066
--
3067 1113 aaronmk
-- Name: location_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3068 689 aaronmk
--
3069
3070
ALTER TABLE location
3071 1113 aaronmk
    ADD CONSTRAINT location_pkey PRIMARY KEY (location_id);
3072 689 aaronmk
3073
3074
--
3075 1113 aaronmk
-- Name: location_unique_coords; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3076 689 aaronmk
--
3077
3078
ALTER TABLE location
3079 1113 aaronmk
    ADD CONSTRAINT location_unique_coords UNIQUE (centerlatitude, centerlongitude);
3080 689 aaronmk
3081
3082
--
3083 1113 aaronmk
-- Name: location_unique_subplot_coords; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3084 689 aaronmk
--
3085
3086
ALTER TABLE location
3087 1113 aaronmk
    ADD CONSTRAINT location_unique_subplot_coords UNIQUE (parent_id, sublocationxposition, sublocationyposition);
3088 689 aaronmk
3089
3090
--
3091 1113 aaronmk
-- Name: locationdetermination_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3092 906 aaronmk
--
3093
3094
ALTER TABLE locationdetermination
3095 1113 aaronmk
    ADD CONSTRAINT locationdetermination_pkey PRIMARY KEY (locationdetermination_id);
3096 906 aaronmk
3097
3098
--
3099 1113 aaronmk
-- Name: locationdetermination_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3100 906 aaronmk
--
3101
3102
ALTER TABLE locationdetermination
3103 1113 aaronmk
    ADD CONSTRAINT locationdetermination_unique UNIQUE (location_id, namedplace_id);
3104 906 aaronmk
3105
3106
--
3107 1113 aaronmk
-- Name: locationevent_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3108 1074 aaronmk
--
3109
3110
ALTER TABLE locationevent
3111 1113 aaronmk
    ADD CONSTRAINT locationevent_pkey PRIMARY KEY (locationevent_id);
3112 1074 aaronmk
3113
3114
--
3115 1113 aaronmk
-- Name: locationevent_unique_datasource_accessioncode; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3116 1074 aaronmk
--
3117
3118
ALTER TABLE locationevent
3119 1113 aaronmk
    ADD CONSTRAINT locationevent_unique_datasource_accessioncode UNIQUE (datasource_id, sourceaccessioncode);
3120 1074 aaronmk
3121
3122
--
3123 1113 aaronmk
-- Name: locationevent_unique_parent_authorcode; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3124 1085 aaronmk
--
3125
3126
ALTER TABLE locationevent
3127 1113 aaronmk
    ADD CONSTRAINT locationevent_unique_parent_authorcode UNIQUE (parent_id, authorlocationcode);
3128 1085 aaronmk
3129
3130
--
3131 1113 aaronmk
-- Name: locationevent_unique_parent_location; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3132 689 aaronmk
--
3133
3134
ALTER TABLE locationevent
3135 1113 aaronmk
    ADD CONSTRAINT locationevent_unique_parent_location UNIQUE (parent_id, location_id);
3136 689 aaronmk
3137
3138
--
3139
-- Name: locationeventcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3140
--
3141
3142
ALTER TABLE locationeventcontributor
3143
    ADD CONSTRAINT locationeventcontributor_pkey PRIMARY KEY (locationeventcontributor_id);
3144
3145
3146
--
3147
-- Name: locationeventsynonym_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3148
--
3149
3150
ALTER TABLE locationeventsynonym
3151
    ADD CONSTRAINT locationeventsynonym_pkey PRIMARY KEY (locationeventsynonym_id);
3152
3153
3154
--
3155 907 aaronmk
-- Name: method_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3156
--
3157
3158
ALTER TABLE method
3159
    ADD CONSTRAINT method_pkey PRIMARY KEY (method_id);
3160
3161
3162
--
3163 1101 aaronmk
-- Name: methodtaxonclass_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3164
--
3165
3166
ALTER TABLE methodtaxonclass
3167
    ADD CONSTRAINT methodtaxonclass_pkey PRIMARY KEY (methodtaxonclass_id);
3168
3169
3170
--
3171 1160 aaronmk
-- Name: methodtaxonclass_unique_description; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3172
--
3173
3174
ALTER TABLE methodtaxonclass
3175 1174 aaronmk
    ADD CONSTRAINT methodtaxonclass_unique_description UNIQUE (method_id, taxonclass);
3176 1160 aaronmk
3177
3178
--
3179
-- Name: methodtaxonclass_unique_plantconcept_id; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3180
--
3181
3182
ALTER TABLE methodtaxonclass
3183
    ADD CONSTRAINT methodtaxonclass_unique_plantconcept_id UNIQUE (method_id, plantconcept_id);
3184
3185
3186
--
3187 1113 aaronmk
-- Name: namedplace_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3188 689 aaronmk
--
3189
3190
ALTER TABLE namedplace
3191 1113 aaronmk
    ADD CONSTRAINT namedplace_pkey PRIMARY KEY (namedplace_id);
3192 689 aaronmk
3193
3194
--
3195
-- Name: namedplacecorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3196
--
3197
3198
ALTER TABLE namedplacecorrelation
3199
    ADD CONSTRAINT namedplacecorrelation_pkey PRIMARY KEY (namedplacecorrelation_id);
3200
3201
3202
--
3203
-- Name: note_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3204
--
3205
3206
ALTER TABLE note
3207
    ADD CONSTRAINT note_pkey PRIMARY KEY (note_id);
3208
3209
3210
--
3211
-- Name: notelink_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3212
--
3213
3214
ALTER TABLE notelink
3215
    ADD CONSTRAINT notelink_pkey PRIMARY KEY (notelink_id);
3216
3217
3218
--
3219
-- Name: party_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3220
--
3221
3222
ALTER TABLE party
3223
    ADD CONSTRAINT party_pkey PRIMARY KEY (party_id);
3224
3225
3226
--
3227
-- Name: partymember_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3228
--
3229
3230
ALTER TABLE partymember
3231
    ADD CONSTRAINT partymember_pkey PRIMARY KEY (partymember_id);
3232
3233
3234
--
3235
-- Name: plant_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3236
--
3237
3238
ALTER TABLE plant
3239
    ADD CONSTRAINT plant_pkey PRIMARY KEY (plant_id);
3240
3241
3242
--
3243
-- Name: plantconcept_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3244
--
3245
3246
ALTER TABLE plantconcept
3247
    ADD CONSTRAINT plantconcept_pkey PRIMARY KEY (plantconcept_id);
3248
3249
3250
--
3251 903 aaronmk
-- Name: plantconceptscope_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3252
--
3253
3254
ALTER TABLE plantconceptscope
3255
    ADD CONSTRAINT plantconceptscope_pkey PRIMARY KEY (plantconceptscope_id);
3256
3257
3258
--
3259 689 aaronmk
-- Name: plantcorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3260
--
3261
3262
ALTER TABLE plantcorrelation
3263
    ADD CONSTRAINT plantcorrelation_pkey PRIMARY KEY (plantcorrelation_id);
3264
3265
3266
--
3267
-- Name: plantlineage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3268
--
3269
3270
ALTER TABLE plantlineage
3271
    ADD CONSTRAINT plantlineage_pkey PRIMARY KEY (plantlineage_id);
3272
3273
3274
--
3275
-- Name: plantname_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3276
--
3277
3278
ALTER TABLE plantname
3279
    ADD CONSTRAINT plantname_pkey PRIMARY KEY (plantname_id);
3280
3281
3282
--
3283 1149 aaronmk
-- Name: plantname_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3284
--
3285
3286
ALTER TABLE plantname
3287
    ADD CONSTRAINT plantname_unique UNIQUE (rank, plantname);
3288
3289
3290
--
3291 689 aaronmk
-- Name: plantobservation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3292
--
3293
3294
ALTER TABLE plantobservation
3295
    ADD CONSTRAINT plantobservation_pkey PRIMARY KEY (plantobservation_id);
3296
3297
3298
--
3299 1113 aaronmk
-- Name: plantstatus_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3300 1109 aaronmk
--
3301
3302
ALTER TABLE plantstatus
3303 1113 aaronmk
    ADD CONSTRAINT plantstatus_pkey PRIMARY KEY (plantstatus_id);
3304 1109 aaronmk
3305
3306
--
3307 1113 aaronmk
-- Name: plantstatus_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3308 689 aaronmk
--
3309
3310
ALTER TABLE plantstatus
3311 1113 aaronmk
    ADD CONSTRAINT plantstatus_unique UNIQUE (plantconcept_id, party_id);
3312 689 aaronmk
3313
3314
--
3315
-- Name: plantusage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3316
--
3317
3318
ALTER TABLE plantusage
3319
    ADD CONSTRAINT plantusage_pkey PRIMARY KEY (plantusage_id);
3320
3321
3322
--
3323 1113 aaronmk
-- Name: project_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3324 689 aaronmk
--
3325
3326
ALTER TABLE project
3327 1113 aaronmk
    ADD CONSTRAINT project_pkey PRIMARY KEY (project_id);
3328 689 aaronmk
3329
3330
--
3331 1113 aaronmk
-- Name: project_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3332 689 aaronmk
--
3333
3334
ALTER TABLE project
3335 1113 aaronmk
    ADD CONSTRAINT project_unique UNIQUE (datasource_id, projectname);
3336 689 aaronmk
3337
3338
--
3339
-- Name: projectcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3340
--
3341
3342
ALTER TABLE projectcontributor
3343
    ADD CONSTRAINT projectcontributor_pkey PRIMARY KEY (projectcontributor_id);
3344
3345
3346
--
3347
-- Name: reference_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3348
--
3349
3350
ALTER TABLE reference
3351
    ADD CONSTRAINT reference_pkey PRIMARY KEY (reference_id);
3352
3353
3354
--
3355
-- Name: referencealtident_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3356
--
3357
3358
ALTER TABLE referencealtident
3359
    ADD CONSTRAINT referencealtident_pkey PRIMARY KEY (referencealtident_id);
3360
3361
3362
--
3363
-- Name: referencecontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3364
--
3365
3366
ALTER TABLE referencecontributor
3367
    ADD CONSTRAINT referencecontributor_pkey PRIMARY KEY (referencecontributor_id);
3368
3369
3370
--
3371
-- Name: referencejournal_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3372
--
3373
3374
ALTER TABLE referencejournal
3375
    ADD CONSTRAINT referencejournal_pkey PRIMARY KEY (referencejournal_id);
3376
3377
3378
--
3379
-- Name: referenceparty_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3380
--
3381
3382
ALTER TABLE referenceparty
3383
    ADD CONSTRAINT referenceparty_pkey PRIMARY KEY (referenceparty_id);
3384
3385
3386
--
3387
-- Name: revision_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3388
--
3389
3390
ALTER TABLE revision
3391
    ADD CONSTRAINT revision_pkey PRIMARY KEY (revision_id);
3392
3393
3394
--
3395
-- Name: role_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3396
--
3397
3398
ALTER TABLE role
3399
    ADD CONSTRAINT role_pkey PRIMARY KEY (role_id);
3400
3401
3402
--
3403 1113 aaronmk
-- Name: soilobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3404 689 aaronmk
--
3405
3406
ALTER TABLE soilobs
3407 1113 aaronmk
    ADD CONSTRAINT soilobs_pkey PRIMARY KEY (soilobs_id);
3408 689 aaronmk
3409
3410
--
3411 1113 aaronmk
-- Name: soilobs_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3412 689 aaronmk
--
3413
3414
ALTER TABLE soilobs
3415 1113 aaronmk
    ADD CONSTRAINT soilobs_unique UNIQUE (locationevent_id);
3416 689 aaronmk
3417
3418
--
3419
-- Name: soiltaxon_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3420
--
3421
3422
ALTER TABLE soiltaxon
3423
    ADD CONSTRAINT soiltaxon_pkey PRIMARY KEY (soiltaxon_id);
3424
3425
3426
--
3427
-- Name: specimen_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3428
--
3429
3430
ALTER TABLE specimen
3431
    ADD CONSTRAINT specimen_pkey PRIMARY KEY (specimen_id);
3432
3433
3434
--
3435 1113 aaronmk
-- Name: specimenreplicate_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3436 689 aaronmk
--
3437
3438
ALTER TABLE specimenreplicate
3439 1113 aaronmk
    ADD CONSTRAINT specimenreplicate_pkey PRIMARY KEY (specimenreplicate_id);
3440 689 aaronmk
3441
3442
--
3443 1113 aaronmk
-- Name: specimenreplicate_unique_accessioncode; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3444 689 aaronmk
--
3445
3446
ALTER TABLE specimenreplicate
3447 1113 aaronmk
    ADD CONSTRAINT specimenreplicate_unique_accessioncode UNIQUE (datasource_id, sourceaccessioncode);
3448 689 aaronmk
3449
3450
--
3451 1113 aaronmk
-- Name: stemobservation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3452 689 aaronmk
--
3453
3454
ALTER TABLE stemobservation
3455 1113 aaronmk
    ADD CONSTRAINT stemobservation_pkey PRIMARY KEY (stemobservation_id);
3456 689 aaronmk
3457
3458
--
3459 1113 aaronmk
-- Name: stemobservation_unique_accessioncode; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3460 689 aaronmk
--
3461
3462
ALTER TABLE stemobservation
3463 1113 aaronmk
    ADD CONSTRAINT stemobservation_unique_accessioncode UNIQUE (plantobservation_id, sourceaccessioncode);
3464 689 aaronmk
3465
3466
--
3467 1113 aaronmk
-- Name: stemobservation_unique_code; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3468 689 aaronmk
--
3469
3470
ALTER TABLE stemobservation
3471 1113 aaronmk
    ADD CONSTRAINT stemobservation_unique_code UNIQUE (plantobservation_id, authorstemcode);
3472 689 aaronmk
3473
3474
--
3475 1058 aaronmk
-- Name: stemtag_current_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3476
--
3477
3478
ALTER TABLE stemtag
3479
    ADD CONSTRAINT stemtag_current_unique UNIQUE (stemobservation_id, iscurrent);
3480
3481
3482
--
3483 1113 aaronmk
-- Name: stemtag_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3484 1058 aaronmk
--
3485
3486
ALTER TABLE stemtag
3487 1113 aaronmk
    ADD CONSTRAINT stemtag_pkey PRIMARY KEY (stemtag_id);
3488 1058 aaronmk
3489
3490
--
3491 1113 aaronmk
-- Name: stemtag_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3492 1058 aaronmk
--
3493
3494
ALTER TABLE stemtag
3495 1113 aaronmk
    ADD CONSTRAINT stemtag_unique UNIQUE (stemobservation_id, tag);
3496 1058 aaronmk
3497
3498
--
3499 689 aaronmk
-- Name: stratum_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3500
--
3501
3502
ALTER TABLE stratum
3503
    ADD CONSTRAINT stratum_pkey PRIMARY KEY (stratum_id);
3504
3505
3506
--
3507
-- Name: taxonalt_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3508
--
3509
3510
ALTER TABLE taxonalt
3511
    ADD CONSTRAINT taxonalt_pkey PRIMARY KEY (taxonalt_id);
3512
3513
3514
--
3515
-- Name: taxondetermination_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3516
--
3517
3518
ALTER TABLE taxondetermination
3519
    ADD CONSTRAINT taxondetermination_pkey PRIMARY KEY (taxondetermination_id);
3520
3521
3522
--
3523
-- Name: taxonoccurrence_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3524
--
3525
3526
ALTER TABLE taxonoccurrence
3527
    ADD CONSTRAINT taxonoccurrence_pkey PRIMARY KEY (taxonoccurrence_id);
3528
3529
3530
--
3531
-- Name: telephone_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3532
--
3533
3534
ALTER TABLE telephone
3535
    ADD CONSTRAINT telephone_pkey PRIMARY KEY (telephone_id);
3536
3537
3538
--
3539
-- Name: trait_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3540
--
3541
3542
ALTER TABLE trait
3543
    ADD CONSTRAINT trait_pkey PRIMARY KEY (trait_id);
3544
3545
3546
--
3547
-- Name: userdefined_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3548
--
3549
3550
ALTER TABLE userdefined
3551
    ADD CONSTRAINT userdefined_pkey PRIMARY KEY (userdefined_id);
3552
3553
3554
--
3555 1221 aaronmk
-- Name: userdefined_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3556
--
3557
3558
ALTER TABLE userdefined
3559
    ADD CONSTRAINT userdefined_unique UNIQUE (tablename, userdefinedname);
3560
3561
3562
--
3563 1113 aaronmk
-- Name: voucher_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3564 689 aaronmk
--
3565
3566
ALTER TABLE voucher
3567 1113 aaronmk
    ADD CONSTRAINT voucher_pkey PRIMARY KEY (voucher_id);
3568 689 aaronmk
3569
3570
--
3571 1113 aaronmk
-- Name: voucher_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
3572 689 aaronmk
--
3573
3574
ALTER TABLE voucher
3575 1113 aaronmk
    ADD CONSTRAINT voucher_unique UNIQUE (taxonoccurrence_id, specimenreplicate_id);
3576 689 aaronmk
3577
3578
--
3579
-- Name: address_organization_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3580
--
3581
3582
CREATE INDEX address_organization_id_x ON address  (organization_id);
3583
3584
3585
--
3586
-- Name: address_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3587
--
3588
3589
CREATE INDEX address_party_id_x ON address  (party_id);
3590
3591
3592
--
3593
-- Name: aggregateoccurrence_taxonoccurrence_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3594
--
3595
3596
CREATE INDEX aggregateoccurrence_taxonoccurrence_id_x ON aggregateoccurrence  (taxonoccurrence_id);
3597
3598
3599
--
3600
-- Name: classcontributor_commclass_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3601
--
3602
3603
CREATE INDEX classcontributor_commclass_id_x ON classcontributor  (commclass_id);
3604
3605
3606
--
3607
-- Name: classcontributor_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3608
--
3609
3610
CREATE INDEX classcontributor_party_id_x ON classcontributor  (party_id);
3611
3612
3613
--
3614
-- Name: classcontributor_role_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3615
--
3616
3617
CREATE INDEX classcontributor_role_id_x ON classcontributor  (role_id);
3618
3619
3620
--
3621
-- Name: commclass_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
3622
--
3623
3624
CREATE UNIQUE INDEX commclass_accessioncode_index ON commclass  (accessioncode);
3625
3626
3627
--
3628
-- Name: commclass_classpublication_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3629
--
3630
3631
CREATE INDEX commclass_classpublication_id_x ON commclass  (classpublication_id);
3632
3633
3634
--
3635
-- Name: commclass_locationevent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3636
--
3637
3638
CREATE INDEX commclass_locationevent_id_x ON commclass  (locationevent_id);
3639
3640
3641
--
3642
-- Name: commconcept_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
3643
--
3644
3645
CREATE UNIQUE INDEX commconcept_accessioncode_index ON commconcept  (accessioncode);
3646
3647
3648
--
3649
-- Name: commconcept_commname_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3650
--
3651
3652
CREATE INDEX commconcept_commname_id_x ON commconcept  (commname_id);
3653
3654
3655
--
3656
-- Name: commconcept_dobscount_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3657
--
3658
3659
CREATE INDEX commconcept_dobscount_x ON commconcept  (d_obscount);
3660
3661
3662
--
3663
-- Name: commconcept_reference_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3664
--
3665
3666
CREATE INDEX commconcept_reference_id_x ON commconcept  (reference_id);
3667
3668
3669
--
3670
-- Name: commcorrelation_commconcept_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3671
--
3672
3673
CREATE INDEX commcorrelation_commconcept_id_x ON commcorrelation  (commconcept_id);
3674
3675
3676
--
3677
-- Name: commcorrelation_commstatus_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3678
--
3679
3680
CREATE INDEX commcorrelation_commstatus_id_x ON commcorrelation  (commstatus_id);
3681
3682
3683
--
3684
-- Name: commdetermination_commauthority_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3685
--
3686
3687
CREATE INDEX commdetermination_commauthority_id_x ON commdetermination  (commauthority_id);
3688
3689
3690
--
3691
-- Name: commdetermination_commclass_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3692
--
3693
3694
CREATE INDEX commdetermination_commclass_id_x ON commdetermination  (commclass_id);
3695
3696
3697
--
3698
-- Name: commdetermination_commconcept_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3699
--
3700
3701
CREATE INDEX commdetermination_commconcept_id_x ON commdetermination  (commconcept_id);
3702
3703
3704
--
3705
-- Name: commlineage_childcommstatus_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3706
--
3707
3708
CREATE INDEX commlineage_childcommstatus_id_x ON commlineage  (childcommstatus_id);
3709
3710
3711
--
3712
-- Name: commlineage_parentcommstatus_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3713
--
3714
3715
CREATE INDEX commlineage_parentcommstatus_id_x ON commlineage  (parentcommstatus_id);
3716
3717
3718
--
3719
-- Name: commname_reference_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3720
--
3721
3722
CREATE INDEX commname_reference_id_x ON commname  (reference_id);
3723
3724
3725
--
3726
-- Name: commstatus_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
3727
--
3728
3729
CREATE UNIQUE INDEX commstatus_accessioncode_index ON commstatus  (accessioncode);
3730
3731
3732
--
3733
-- Name: commstatus_commconcept_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3734
--
3735
3736
CREATE INDEX commstatus_commconcept_id_x ON commstatus  (commconcept_id);
3737
3738
3739
--
3740
-- Name: commstatus_commlevel_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3741
--
3742
3743
CREATE INDEX commstatus_commlevel_x ON commstatus  (commlevel);
3744
3745
3746
--
3747
-- Name: commstatus_commparent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3748
--
3749
3750
CREATE INDEX commstatus_commparent_id_x ON commstatus  (commparent_id);
3751
3752
3753
--
3754
-- Name: commstatus_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3755
--
3756
3757
CREATE INDEX commstatus_party_id_x ON commstatus  (party_id);
3758
3759
3760
--
3761
-- Name: commstatus_reference_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3762
--
3763
3764
CREATE INDEX commstatus_reference_id_x ON commstatus  (reference_id);
3765
3766
3767
--
3768
-- Name: commusage_classsystem_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3769
--
3770
3771
CREATE INDEX commusage_classsystem_x ON commusage  (classsystem);
3772
3773
3774
--
3775
-- Name: commusage_commconcept_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3776
--
3777
3778
CREATE INDEX commusage_commconcept_id_x ON commusage  (commconcept_id);
3779
3780
3781
--
3782
-- Name: commusage_commname_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3783
--
3784
3785
CREATE INDEX commusage_commname_id_x ON commusage  (commname_id);
3786
3787
3788
--
3789
-- Name: commusage_commname_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3790
--
3791
3792
CREATE INDEX commusage_commname_x ON commusage  (commname);
3793
3794
3795
--
3796
-- Name: commusage_commstatus_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3797
--
3798
3799
CREATE INDEX commusage_commstatus_id_x ON commusage  (commstatus_id);
3800
3801
3802
--
3803
-- Name: commusage_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3804
--
3805
3806
CREATE INDEX commusage_party_id_x ON commusage  (party_id);
3807
3808
3809
--
3810
-- Name: coverindex_covermethod_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3811
--
3812
3813
CREATE INDEX coverindex_covermethod_id_x ON coverindex  (covermethod_id);
3814
3815
3816
--
3817
-- Name: covermethod_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
3818
--
3819
3820
CREATE UNIQUE INDEX covermethod_accessioncode_index ON covermethod  (accessioncode);
3821
3822
3823
--
3824
-- Name: covermethod_reference_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3825
--
3826
3827
CREATE INDEX covermethod_reference_id_x ON covermethod  (reference_id);
3828
3829
3830
--
3831
-- Name: definedvalue_userdefined_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3832
--
3833
3834
CREATE INDEX definedvalue_userdefined_id_x ON definedvalue  (userdefined_id);
3835
3836
3837
--
3838
-- Name: disturbanceobs_locationevent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
3839
--
3840
3841
CREATE INDEX disturbanceobs_locationevent_id_x ON disturbanceobs  (locationevent_id);
3842
3843
3844
--
3845 1151 aaronmk
-- Name: fki_aggregateoccurrence_coverindex_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3846
--
3847
3848
CREATE INDEX fki_aggregateoccurrence_coverindex_id ON aggregateoccurrence  (coverindex_id);
3849
3850
3851
--
3852 689 aaronmk
-- Name: fki_aggregateoccurrence_plantobservation_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3853
--
3854
3855
CREATE INDEX fki_aggregateoccurrence_plantobservation_id ON aggregateoccurrence  (plantobservation_id);
3856
3857
3858
--
3859
-- Name: fki_aggregateoccurrence_stratum_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3860
--
3861
3862
CREATE INDEX fki_aggregateoccurrence_stratum_id ON aggregateoccurrence  (stratum_id);
3863
3864
3865
--
3866 906 aaronmk
-- Name: fki_locationdetermination_identifier_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3867
--
3868
3869
CREATE INDEX fki_locationdetermination_identifier_id ON locationdetermination  (identifier_id);
3870
3871
3872
--
3873 1055 aaronmk
-- Name: fki_locationevent_datasource_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3874
--
3875
3876
CREATE INDEX fki_locationevent_datasource_id ON locationevent  (datasource_id);
3877
3878
3879
--
3880 907 aaronmk
-- Name: fki_locationevent_method_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3881 898 aaronmk
--
3882
3883 1099 aaronmk
CREATE INDEX fki_locationevent_method_id ON locationevent  (method_id);
3884 898 aaronmk
3885
3886
--
3887 910 aaronmk
-- Name: fki_locationevent_parent_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3888
--
3889
3890
CREATE INDEX fki_locationevent_parent_id ON locationevent  (parent_id);
3891
3892
3893
--
3894 907 aaronmk
-- Name: fki_method_reference_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3895
--
3896
3897
CREATE INDEX fki_method_reference_id ON method  (reference_id);
3898
3899
3900
--
3901 1162 aaronmk
-- Name: fki_method_subplotmethod_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3902
--
3903
3904
CREATE INDEX fki_method_subplotmethod_id ON method  (subplotmethod_id);
3905
3906
3907
--
3908 1101 aaronmk
-- Name: fki_methodtaxonclass_method_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3909
--
3910
3911
CREATE INDEX fki_methodtaxonclass_method_id ON methodtaxonclass  (method_id);
3912
3913
3914
--
3915
-- Name: fki_methodtaxonclass_plantconcept_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3916
--
3917
3918
CREATE INDEX fki_methodtaxonclass_plantconcept_id ON methodtaxonclass  (plantconcept_id);
3919
3920
3921
--
3922 1312 aaronmk
-- Name: fki_namedplace_parent_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3923
--
3924
3925
CREATE INDEX fki_namedplace_parent_id ON namedplace  (parent_id);
3926
3927
3928
--
3929 903 aaronmk
-- Name: fki_plantconcept_scope_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3930
--
3931
3932
CREATE INDEX fki_plantconcept_scope_id ON plantconcept  (scope_id);
3933
3934
3935
--
3936
-- Name: fki_plantconceptscope_locationevent_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3937
--
3938
3939
CREATE INDEX fki_plantconceptscope_locationevent_id ON plantconceptscope  (locationevent_id);
3940
3941
3942
--
3943 909 aaronmk
-- Name: fki_plantconceptscope_namedplace_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3944
--
3945
3946
CREATE INDEX fki_plantconceptscope_namedplace_id ON plantconceptscope  (namedplace_id);
3947
3948
3949
--
3950 903 aaronmk
-- Name: fki_plantconceptscope_project_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3951
--
3952
3953
CREATE INDEX fki_plantconceptscope_project_id ON plantconceptscope  (project_id);
3954
3955
3956
--
3957 689 aaronmk
-- Name: fki_plantobservation_plant_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3958
--
3959
3960
CREATE INDEX fki_plantobservation_plant_id ON plantobservation  (plant_id);
3961
3962
3963
--
3964 1072 aaronmk
-- Name: fki_project_datasource_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3965
--
3966
3967
CREATE INDEX fki_project_datasource_id ON project  (datasource_id);
3968
3969
3970
--
3971 1053 aaronmk
-- Name: fki_specimenreplicate_datasource_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3972
--
3973
3974
CREATE INDEX fki_specimenreplicate_datasource_id ON specimenreplicate  (datasource_id);
3975
3976
3977
--
3978 689 aaronmk
-- Name: fki_specimenreplicate_museum_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3979
--
3980
3981
CREATE INDEX fki_specimenreplicate_museum_id ON specimenreplicate  (museum_id);
3982
3983
3984
--
3985
-- Name: fki_specimenreplicate_reference_id_fkey; Type: INDEX; Schema: public; Owner: -; Tablespace:
3986
--
3987
3988 1053 aaronmk
CREATE INDEX fki_specimenreplicate_reference_id_fkey ON specimenreplicate  (datasource_id);
3989 689 aaronmk
3990
3991
--
3992
-- Name: fki_specimenreplicate_specimen_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
3993
--
3994
3995
CREATE INDEX fki_specimenreplicate_specimen_id ON specimenreplicate  (specimen_id);
3996
3997
3998
--
3999 1251 aaronmk
-- Name: fki_specimenreplicate_taxonoccurrence_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
4000
--
4001
4002
CREATE INDEX fki_specimenreplicate_taxonoccurrence_id ON specimenreplicate  (taxonoccurrence_id);
4003
4004
4005
--
4006 1058 aaronmk
-- Name: fki_stemtag_plant_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
4007
--
4008
4009
CREATE INDEX fki_stemtag_plant_id ON stemtag  (stemobservation_id);
4010
4011
4012
--
4013
-- Name: fki_stemtag_plantobservation_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
4014
--
4015
4016
CREATE INDEX fki_stemtag_plantobservation_id ON stemtag  (stemobservation_id);
4017
4018
4019
--
4020
-- Name: fki_stemtag_stemobservation_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
4021
--
4022
4023
CREATE INDEX fki_stemtag_stemobservation_id ON stemtag  (stemobservation_id);
4024
4025
4026
--
4027 689 aaronmk
-- Name: graphic_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4028
--
4029
4030
CREATE UNIQUE INDEX graphic_accessioncode_index ON graphic  (accessioncode);
4031
4032
4033
--
4034
-- Name: graphic_locationevent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4035
--
4036
4037
CREATE INDEX graphic_locationevent_id_x ON graphic  (locationevent_id);
4038
4039
4040
--
4041
-- Name: location_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4042
--
4043
4044
CREATE UNIQUE INDEX location_accessioncode_index ON location  (accessioncode);
4045
4046
4047
--
4048
-- Name: location_parent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4049
--
4050
4051
CREATE INDEX location_parent_id_x ON location  (parent_id);
4052
4053
4054
--
4055 906 aaronmk
-- Name: locationdetermination_location_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4056
--
4057
4058
CREATE INDEX locationdetermination_location_id_x ON locationdetermination  (location_id);
4059
4060
4061
--
4062
-- Name: locationdetermination_namedplace_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4063
--
4064
4065
CREATE INDEX locationdetermination_namedplace_id_x ON locationdetermination  (namedplace_id);
4066
4067
4068
--
4069 689 aaronmk
-- Name: locationevent_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4070
--
4071
4072
CREATE UNIQUE INDEX locationevent_accessioncode_index ON locationevent  (accessioncode);
4073
4074
4075
--
4076
-- Name: locationevent_location_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4077
--
4078
4079
CREATE INDEX locationevent_location_id_x ON locationevent  (location_id);
4080
4081
4082
--
4083
-- Name: locationevent_previousobs_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4084
--
4085
4086
CREATE INDEX locationevent_previousobs_id_x ON locationevent  (previous_id);
4087
4088
4089
--
4090
-- Name: locationevent_project_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4091
--
4092
4093
CREATE INDEX locationevent_project_id_x ON locationevent  (project_id);
4094
4095
4096
--
4097
-- Name: locationevent_soiltaxon_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4098
--
4099
4100
CREATE INDEX locationevent_soiltaxon_id_x ON locationevent  (soiltaxon_id);
4101
4102
4103
--
4104 1113 aaronmk
-- Name: locationevent_unique_project_authorcode; Type: INDEX; Schema: public; Owner: -; Tablespace:
4105
--
4106
4107
4108
4109
4110
--
4111 689 aaronmk
-- Name: locationeventcontributor_locationevent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4112
--
4113
4114
CREATE INDEX locationeventcontributor_locationevent_id_x ON locationeventcontributor  (locationevent_id);
4115
4116
4117
--
4118
-- Name: locationeventcontributor_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4119
--
4120
4121
CREATE INDEX locationeventcontributor_party_id_x ON locationeventcontributor  (party_id);
4122
4123
4124
--
4125
-- Name: locationeventcontributor_role_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4126
--
4127
4128
CREATE INDEX locationeventcontributor_role_id_x ON locationeventcontributor  (role_id);
4129
4130
4131
--
4132
-- Name: locationeventsynonym_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4133
--
4134
4135
CREATE UNIQUE INDEX locationeventsynonym_accessioncode_index ON locationeventsynonym  (accessioncode);
4136
4137
4138
--
4139
-- Name: locationeventsynonym_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4140
--
4141
4142
CREATE INDEX locationeventsynonym_party_id_x ON locationeventsynonym  (party_id);
4143
4144
4145
--
4146
-- Name: locationeventsynonym_primarylocationevent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4147
--
4148
4149
CREATE INDEX locationeventsynonym_primarylocationevent_id_x ON locationeventsynonym  (primarylocationevent_id);
4150
4151
4152
--
4153
-- Name: locationeventsynonym_role_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4154
--
4155
4156
CREATE INDEX locationeventsynonym_role_id_x ON locationeventsynonym  (role_id);
4157
4158
4159
--
4160
-- Name: locationeventsynonym_synonymlocationevent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4161
--
4162
4163
CREATE INDEX locationeventsynonym_synonymlocationevent_id_x ON locationeventsynonym  (synonymlocationevent_id);
4164
4165
4166
--
4167 907 aaronmk
-- Name: method_accessioncode; Type: INDEX; Schema: public; Owner: -; Tablespace:
4168
--
4169
4170
CREATE UNIQUE INDEX method_accessioncode ON method  (accessioncode);
4171
4172
4173
--
4174 1113 aaronmk
-- Name: method_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
4175 1067 aaronmk
--
4176
4177
4178
4179
4180
--
4181 689 aaronmk
-- Name: namedplace_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4182
--
4183
4184
CREATE UNIQUE INDEX namedplace_accessioncode_index ON namedplace  (accessioncode);
4185
4186
4187
--
4188 1315 aaronmk
-- Name: namedplace_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
4189
--
4190
4191
4192
4193
4194
--
4195 689 aaronmk
-- Name: note_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4196
--
4197
4198
CREATE UNIQUE INDEX note_accessioncode_index ON note  (accessioncode);
4199
4200
4201
--
4202
-- Name: note_notelink_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4203
--
4204
4205
CREATE INDEX note_notelink_id_x ON note  (notelink_id);
4206
4207
4208
--
4209
-- Name: note_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4210
--
4211
4212
CREATE INDEX note_party_id_x ON note  (party_id);
4213
4214
4215
--
4216
-- Name: note_role_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4217
--
4218
4219
CREATE INDEX note_role_id_x ON note  (role_id);
4220
4221
4222
--
4223
-- Name: party_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4224
--
4225
4226
CREATE UNIQUE INDEX party_accessioncode_index ON party  (accessioncode);
4227
4228
4229
--
4230
-- Name: party_currentname_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4231
--
4232
4233
CREATE INDEX party_currentname_id_x ON party  (currentname_id);
4234
4235
4236
--
4237 868 aaronmk
-- Name: party_givenname; Type: INDEX; Schema: public; Owner: -; Tablespace:
4238
--
4239
4240
CREATE INDEX party_givenname ON party  (givenname);
4241
4242
4243
--
4244
-- Name: party_middlename; Type: INDEX; Schema: public; Owner: -; Tablespace:
4245
--
4246
4247
CREATE INDEX party_middlename ON party  (middlename);
4248
4249
4250
--
4251
-- Name: party_organizationname; Type: INDEX; Schema: public; Owner: -; Tablespace:
4252
--
4253
4254
CREATE INDEX party_organizationname ON party  (organizationname);
4255
4256
4257
--
4258
-- Name: party_surname; Type: INDEX; Schema: public; Owner: -; Tablespace:
4259
--
4260
4261
CREATE INDEX party_surname ON party  (surname);
4262
4263
4264
--
4265 1247 aaronmk
-- Name: party_unique_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
4266 1113 aaronmk
--
4267
4268
4269
4270
4271
--
4272 1247 aaronmk
-- Name: party_unique_organizationname; Type: INDEX; Schema: public; Owner: -; Tablespace:
4273
--
4274
4275
4276
4277
4278
--
4279 689 aaronmk
-- Name: partymember_childparty_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4280
--
4281
4282
CREATE INDEX partymember_childparty_id_x ON partymember  (childparty_id);
4283
4284
4285
--
4286
-- Name: partymember_parentparty_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4287
--
4288
4289
CREATE INDEX partymember_parentparty_id_x ON partymember  (parentparty_id);
4290
4291
4292
--
4293
-- Name: partymember_role_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4294
--
4295
4296
CREATE INDEX partymember_role_id_x ON partymember  (role_id);
4297
4298
4299
--
4300
-- Name: plantconcept_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4301
--
4302
4303
CREATE UNIQUE INDEX plantconcept_accessioncode_index ON plantconcept  (accessioncode);
4304
4305
4306
--
4307
-- Name: plantconcept_dobscount_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4308
--
4309
4310
CREATE INDEX plantconcept_dobscount_x ON plantconcept  (d_obscount);
4311
4312
4313
--
4314 1113 aaronmk
-- Name: plantconcept_plantname_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4315 689 aaronmk
--
4316
4317 1113 aaronmk
CREATE INDEX plantconcept_plantname_id_x ON plantconcept  (plantname_id);
4318 689 aaronmk
4319
4320
--
4321 1113 aaronmk
-- Name: plantconcept_reference_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4322 689 aaronmk
--
4323
4324 1113 aaronmk
CREATE INDEX plantconcept_reference_id_x ON plantconcept  (reference_id);
4325 689 aaronmk
4326
4327
--
4328 1113 aaronmk
-- Name: plantconcept_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
4329 689 aaronmk
--
4330
4331
4332
4333 1113 aaronmk
4334 689 aaronmk
--
4335 1113 aaronmk
-- Name: plantconceptscope_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
4336 903 aaronmk
--
4337
4338
4339
4340
4341
--
4342 689 aaronmk
-- Name: plantcorrelation_plantconcept_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4343
--
4344
4345
CREATE INDEX plantcorrelation_plantconcept_id_x ON plantcorrelation  (plantconcept_id);
4346
4347
4348
--
4349
-- Name: plantcorrelation_plantstatus_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4350
--
4351
4352
CREATE INDEX plantcorrelation_plantstatus_id_x ON plantcorrelation  (plantstatus_id);
4353
4354
4355
--
4356
-- Name: plantlineage_childplantstatus_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4357
--
4358
4359
CREATE INDEX plantlineage_childplantstatus_id_x ON plantlineage  (childplantstatus_id);
4360
4361
4362
--
4363
-- Name: plantlineage_parentplantstatus_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4364
--
4365
4366
CREATE INDEX plantlineage_parentplantstatus_id_x ON plantlineage  (parentplantstatus_id);
4367
4368
4369
--
4370
-- Name: plantname_plantname_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4371
--
4372
4373
CREATE INDEX plantname_plantname_x ON plantname  (plantname);
4374
4375
4376
--
4377 1250 aaronmk
-- Name: plantname_rank; Type: INDEX; Schema: public; Owner: -; Tablespace:
4378
--
4379
4380
CREATE INDEX plantname_rank ON plantname  (rank);
4381
4382
4383
--
4384 689 aaronmk
-- Name: plantname_reference_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4385
--
4386
4387
CREATE INDEX plantname_reference_id_x ON plantname  (reference_id);
4388
4389
4390
--
4391
-- Name: plantstatus_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4392
--
4393
4394
CREATE UNIQUE INDEX plantstatus_accessioncode_index ON plantstatus  (accessioncode);
4395
4396
4397
--
4398
-- Name: plantstatus_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4399
--
4400
4401
CREATE INDEX plantstatus_party_id_x ON plantstatus  (party_id);
4402
4403
4404
--
4405
-- Name: plantstatus_plantconcept_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4406
--
4407
4408
CREATE INDEX plantstatus_plantconcept_id_x ON plantstatus  (plantconcept_id);
4409
4410
4411
--
4412
-- Name: plantstatus_plantparent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4413
--
4414
4415
CREATE INDEX plantstatus_plantparent_id_x ON plantstatus  (plantparent_id);
4416
4417
4418
--
4419
-- Name: plantstatus_reference_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4420
--
4421
4422
CREATE INDEX plantstatus_reference_id_x ON plantstatus  (reference_id);
4423
4424
4425
--
4426
-- Name: plantusage_classsystem_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4427
--
4428
4429
CREATE INDEX plantusage_classsystem_x ON plantusage  (classsystem);
4430
4431
4432
--
4433
-- Name: plantusage_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4434
--
4435
4436
CREATE INDEX plantusage_party_id_x ON plantusage  (party_id);
4437
4438
4439
--
4440
-- Name: plantusage_plantconcept_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4441
--
4442
4443
CREATE INDEX plantusage_plantconcept_id_x ON plantusage  (plantconcept_id);
4444
4445
4446
--
4447
-- Name: plantusage_plantname_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4448
--
4449
4450
CREATE INDEX plantusage_plantname_id_x ON plantusage  (plantname_id);
4451
4452
4453
--
4454
-- Name: plantusage_plantname_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4455
--
4456
4457
CREATE INDEX plantusage_plantname_x ON plantusage  (plantname);
4458
4459
4460
--
4461
-- Name: plantusage_plantstatus_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4462
--
4463
4464
CREATE INDEX plantusage_plantstatus_id_x ON plantusage  (plantstatus_id);
4465
4466
4467
--
4468
-- Name: project_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4469
--
4470
4471
CREATE UNIQUE INDEX project_accessioncode_index ON project  (accessioncode);
4472
4473
4474
--
4475
-- Name: projectcontributor_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4476
--
4477
4478
CREATE INDEX projectcontributor_party_id_x ON projectcontributor  (party_id);
4479
4480
4481
--
4482
-- Name: projectcontributor_project_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4483
--
4484
4485
CREATE INDEX projectcontributor_project_id_x ON projectcontributor  (project_id);
4486
4487
4488
--
4489
-- Name: projectcontributor_role_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4490
--
4491
4492
CREATE INDEX projectcontributor_role_id_x ON projectcontributor  (role_id);
4493
4494
4495
--
4496
-- Name: reference_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4497
--
4498
4499
CREATE UNIQUE INDEX reference_accessioncode_index ON reference  (accessioncode);
4500
4501
4502
--
4503
-- Name: reference_referencejournal_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4504
--
4505
4506
CREATE INDEX reference_referencejournal_id_x ON reference  (referencejournal_id);
4507
4508
4509
--
4510
-- Name: referencealtident_reference_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4511
--
4512
4513
CREATE INDEX referencealtident_reference_id_x ON referencealtident  (reference_id);
4514
4515
4516
--
4517
-- Name: referencecontributor_reference_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4518
--
4519
4520
CREATE INDEX referencecontributor_reference_id_x ON referencecontributor  (reference_id);
4521
4522
4523
--
4524
-- Name: referencecontributor_referenceparty_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4525
--
4526
4527
CREATE INDEX referencecontributor_referenceparty_id_x ON referencecontributor  (referenceparty_id);
4528
4529
4530
--
4531
-- Name: referencejournal_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4532
--
4533
4534
CREATE UNIQUE INDEX referencejournal_accessioncode_index ON referencejournal  (accessioncode);
4535
4536
4537
--
4538
-- Name: referenceparty_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4539
--
4540
4541
CREATE UNIQUE INDEX referenceparty_accessioncode_index ON referenceparty  (accessioncode);
4542
4543
4544
--
4545
-- Name: referenceparty_currentparty_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4546
--
4547
4548
CREATE INDEX referenceparty_currentparty_id_x ON referenceparty  (currentparty_id);
4549
4550
4551
--
4552
-- Name: revision_previousrevision_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4553
--
4554
4555
CREATE INDEX revision_previousrevision_id_x ON revision  (previousrevision_id);
4556
4557
4558
--
4559
-- Name: role_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4560
--
4561
4562
CREATE UNIQUE INDEX role_accessioncode_index ON role  (accessioncode);
4563
4564
4565
--
4566
-- Name: soilobs_locationevent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4567
--
4568
4569
CREATE INDEX soilobs_locationevent_id_x ON soilobs  (locationevent_id);
4570
4571
4572
--
4573
-- Name: soiltaxon_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4574
--
4575
4576
CREATE UNIQUE INDEX soiltaxon_accessioncode_index ON soiltaxon  (accessioncode);
4577
4578
4579
--
4580
-- Name: soiltaxon_soilparent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4581
--
4582
4583
CREATE INDEX soiltaxon_soilparent_id_x ON soiltaxon  (soilparent_id);
4584
4585
4586
--
4587 1253 aaronmk
-- Name: specimenreplicate_unique_catalognumber; Type: INDEX; Schema: public; Owner: -; Tablespace:
4588
--
4589
4590
4591
4592
4593
--
4594 689 aaronmk
-- Name: stemobservation_plantobservation_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4595
--
4596
4597
CREATE INDEX stemobservation_plantobservation_id_x ON stemobservation  (plantobservation_id);
4598
4599
4600
--
4601
-- Name: stratum_locationevent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4602
--
4603
4604
CREATE INDEX stratum_locationevent_id_x ON stratum  (locationevent_id);
4605
4606
4607
--
4608
-- Name: taxonalt_plantconcept_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4609
--
4610
4611
CREATE INDEX taxonalt_plantconcept_id_x ON taxonalt  (plantconcept_id);
4612
4613
4614
--
4615
-- Name: taxonalt_taxondetermination_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4616
--
4617
4618
CREATE INDEX taxonalt_taxondetermination_id_x ON taxonalt  (taxondetermination_id);
4619
4620
4621
--
4622
-- Name: taxondetermination_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4623
--
4624
4625
CREATE UNIQUE INDEX taxondetermination_accessioncode_index ON taxondetermination  (accessioncode);
4626
4627
4628
--
4629
-- Name: taxondetermination_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4630
--
4631
4632
CREATE INDEX taxondetermination_party_id_x ON taxondetermination  (party_id);
4633
4634
4635
--
4636
-- Name: taxondetermination_plantconcept_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4637
--
4638
4639
CREATE INDEX taxondetermination_plantconcept_id_x ON taxondetermination  (plantconcept_id);
4640
4641
4642
--
4643
-- Name: taxondetermination_reference_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4644
--
4645
4646
CREATE INDEX taxondetermination_reference_id_x ON taxondetermination  (reference_id);
4647
4648
4649
--
4650
-- Name: taxondetermination_role_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4651
--
4652
4653
CREATE INDEX taxondetermination_role_id_x ON taxondetermination  (role_id);
4654
4655
4656
--
4657
-- Name: taxondetermination_taxonoccurrence_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4658
--
4659
4660
CREATE INDEX taxondetermination_taxonoccurrence_id_x ON taxondetermination  (taxonoccurrence_id);
4661
4662
4663
--
4664 1113 aaronmk
-- Name: taxondetermination_unique; Type: INDEX; Schema: public; Owner: -; Tablespace:
4665
--
4666
4667
4668
4669
4670
--
4671 689 aaronmk
-- Name: taxonoccurrence_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4672
--
4673
4674
CREATE UNIQUE INDEX taxonoccurrence_accessioncode_index ON taxonoccurrence  (accessioncode);
4675
4676
4677
--
4678
-- Name: taxonoccurrence_locationevent_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4679
--
4680
4681
CREATE INDEX taxonoccurrence_locationevent_id_x ON taxonoccurrence  (locationevent_id);
4682
4683
4684
--
4685
-- Name: telephone_party_id_x; Type: INDEX; Schema: public; Owner: -; Tablespace:
4686
--
4687
4688
CREATE INDEX telephone_party_id_x ON telephone  (party_id);
4689
4690
4691
--
4692
-- Name: userdefined_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace:
4693
--
4694
4695
CREATE UNIQUE INDEX userdefined_accessioncode_index ON userdefined  (accessioncode);
4696
4697
4698
--
4699 704 aaronmk
-- Name: aggregateoccurrence_plantobs_count_1; Type: TRIGGER; Schema: public; Owner: -
4700
--
4701
4702
4703
4704 705 aaronmk
4705 704 aaronmk
--
4706 689 aaronmk
-- Name: address_organization_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4707
--
4708
4709
ALTER TABLE address
4710
    ADD CONSTRAINT address_organization_id FOREIGN KEY (organization_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
4711
4712
4713
--
4714
-- Name: address_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4715
--
4716
4717
ALTER TABLE address
4718
    ADD CONSTRAINT address_party_id FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
4719
4720
4721
--
4722 1151 aaronmk
-- Name: aggregateoccurrence_coverindex_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4723
--
4724
4725
ALTER TABLE aggregateoccurrence
4726
    ADD CONSTRAINT aggregateoccurrence_coverindex_id FOREIGN KEY (coverindex_id) REFERENCES coverindex(coverindex_id) ON UPDATE CASCADE ON DELETE SET NULL;
4727
4728
4729
--
4730 1028 aaronmk
-- Name: aggregateoccurrence_method_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4731
--
4732
4733
ALTER TABLE aggregateoccurrence
4734
    ADD CONSTRAINT aggregateoccurrence_method_id FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE;
4735
4736
4737
--
4738 689 aaronmk
-- Name: aggregateoccurrence_plantobservation_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4739
--
4740
4741
ALTER TABLE aggregateoccurrence
4742
    ADD CONSTRAINT aggregateoccurrence_plantobservation_id FOREIGN KEY (plantobservation_id) REFERENCES plantobservation(plantobservation_id) ON UPDATE CASCADE ON DELETE CASCADE;
4743
4744
4745
--
4746
-- Name: aggregateoccurrence_stratum_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4747
--
4748
4749
ALTER TABLE aggregateoccurrence
4750
    ADD CONSTRAINT aggregateoccurrence_stratum_id FOREIGN KEY (stratum_id) REFERENCES stratum(stratum_id) ON UPDATE CASCADE ON DELETE CASCADE;
4751
4752
4753
--
4754
-- Name: aggregateoccurrence_taxonoccurrence_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4755
--
4756
4757
ALTER TABLE aggregateoccurrence
4758
    ADD CONSTRAINT aggregateoccurrence_taxonoccurrence_id FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
4759
4760
4761
--
4762
-- Name: classcontributor_commclass_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4763
--
4764
4765
ALTER TABLE classcontributor
4766
    ADD CONSTRAINT classcontributor_commclass_id FOREIGN KEY (commclass_id) REFERENCES commclass(commclass_id) ON UPDATE CASCADE ON DELETE CASCADE;
4767
4768
4769
--
4770
-- Name: classcontributor_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4771
--
4772
4773
4774
4775 812 aaronmk
4776 689 aaronmk
--
4777
-- Name: classcontributor_role_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4778
--
4779
4780
4781
4782 1168 aaronmk
4783 689 aaronmk
--
4784
-- Name: commclass_classpublication_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4785
--
4786
4787
4788
4789 812 aaronmk
4790 689 aaronmk
--
4791
-- Name: commclass_locationevent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4792
--
4793
4794
ALTER TABLE commclass
4795
    ADD CONSTRAINT commclass_locationevent_id FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4796
4797
4798
--
4799
-- Name: commconcept_commname_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4800
--
4801
4802
ALTER TABLE commconcept
4803
    ADD CONSTRAINT commconcept_commname_id FOREIGN KEY (commname_id) REFERENCES commname(commname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4804
4805
4806
--
4807
-- Name: commconcept_reference_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4808
--
4809
4810
4811
4812 812 aaronmk
4813 689 aaronmk
--
4814
-- Name: commcorrelation_commconcept_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4815
--
4816
4817
ALTER TABLE commcorrelation
4818
    ADD CONSTRAINT commcorrelation_commconcept_id FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4819
4820
4821
--
4822
-- Name: commcorrelation_commstatus_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4823
--
4824
4825
ALTER TABLE commcorrelation
4826
    ADD CONSTRAINT commcorrelation_commstatus_id FOREIGN KEY (commstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4827
4828
4829
--
4830
-- Name: commdetermination_commauthority_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4831
--
4832
4833
4834
4835 812 aaronmk
4836 689 aaronmk
--
4837
-- Name: commdetermination_commclass_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4838
--
4839
4840
ALTER TABLE commdetermination
4841
    ADD CONSTRAINT commdetermination_commclass_id FOREIGN KEY (commclass_id) REFERENCES commclass(commclass_id) ON UPDATE CASCADE ON DELETE CASCADE;
4842
4843
4844
--
4845
-- Name: commdetermination_commconcept_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4846
--
4847
4848
ALTER TABLE commdetermination
4849
    ADD CONSTRAINT commdetermination_commconcept_id FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4850
4851
4852
--
4853
-- Name: commlineage_childcommstatus_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4854
--
4855
4856
ALTER TABLE commlineage
4857
    ADD CONSTRAINT commlineage_childcommstatus_id FOREIGN KEY (childcommstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4858
4859
4860
--
4861
-- Name: commlineage_parentcommstatus_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4862
--
4863
4864
ALTER TABLE commlineage
4865
    ADD CONSTRAINT commlineage_parentcommstatus_id FOREIGN KEY (parentcommstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4866
4867
4868
--
4869
-- Name: commname_reference_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4870
--
4871
4872
4873
4874 812 aaronmk
4875 689 aaronmk
--
4876
-- Name: commstatus_commconcept_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4877
--
4878
4879
ALTER TABLE commstatus
4880
    ADD CONSTRAINT commstatus_commconcept_id FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4881
4882
4883
--
4884
-- Name: commstatus_commparent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4885
--
4886
4887
ALTER TABLE commstatus
4888
    ADD CONSTRAINT commstatus_commparent_id FOREIGN KEY (commparent_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4889
4890
4891
--
4892
-- Name: commstatus_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4893
--
4894
4895
4896
4897 812 aaronmk
4898 689 aaronmk
--
4899
-- Name: commstatus_reference_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4900
--
4901
4902
4903
4904 812 aaronmk
4905 689 aaronmk
--
4906
-- Name: commusage_commconcept_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4907
--
4908
4909
ALTER TABLE commusage
4910
    ADD CONSTRAINT commusage_commconcept_id FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4911
4912
4913
--
4914
-- Name: commusage_commname_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4915
--
4916
4917
ALTER TABLE commusage
4918
    ADD CONSTRAINT commusage_commname_id FOREIGN KEY (commname_id) REFERENCES commname(commname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4919
4920
4921
--
4922
-- Name: commusage_commstatus_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4923
--
4924
4925
ALTER TABLE commusage
4926
    ADD CONSTRAINT commusage_commstatus_id FOREIGN KEY (commstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4927
4928
4929
--
4930
-- Name: commusage_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4931
--
4932
4933
4934
4935 812 aaronmk
4936 689 aaronmk
--
4937
-- Name: coverindex_covermethod_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4938
--
4939
4940
ALTER TABLE coverindex
4941
    ADD CONSTRAINT coverindex_covermethod_id FOREIGN KEY (covermethod_id) REFERENCES covermethod(covermethod_id) ON UPDATE CASCADE ON DELETE CASCADE;
4942
4943
4944
--
4945
-- Name: covermethod_reference_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4946
--
4947
4948
4949
4950 812 aaronmk
4951 689 aaronmk
--
4952
-- Name: definedvalue_userdefined_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4953
--
4954
4955
ALTER TABLE definedvalue
4956
    ADD CONSTRAINT definedvalue_userdefined_id FOREIGN KEY (userdefined_id) REFERENCES userdefined(userdefined_id) ON UPDATE CASCADE ON DELETE CASCADE;
4957
4958
4959
--
4960
-- Name: disturbanceobs_locationevent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4961
--
4962
4963
ALTER TABLE disturbanceobs
4964
    ADD CONSTRAINT disturbanceobs_locationevent_id FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4965
4966
4967
--
4968
-- Name: graphic_locationevent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4969
--
4970
4971
ALTER TABLE graphic
4972
    ADD CONSTRAINT graphic_locationevent_id FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4973
4974
4975
--
4976
-- Name: location_parent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4977
--
4978
4979
ALTER TABLE location
4980
    ADD CONSTRAINT location_parent_id FOREIGN KEY (parent_id) REFERENCES location(location_id) ON UPDATE CASCADE ON DELETE CASCADE;
4981
4982
4983
--
4984 906 aaronmk
-- Name: locationdetermination_identifier_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4985
--
4986
4987
4988
4989
4990
--
4991
-- Name: locationdetermination_location_id; Type: FK CONSTRAINT; Schema: public; Owner: -
4992
--
4993
4994
ALTER TABLE locationdetermination
4995
    ADD CONSTRAINT locationdetermination_location_id FOREIGN KEY (location_id) REFERENCES location(location_id) ON UPDATE CASCADE ON DELETE CASCADE;
4996
4997
4998
--
4999
-- Name: locationdetermination_namedplace_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5000
--
5001
5002
ALTER TABLE locationdetermination
5003
    ADD CONSTRAINT locationdetermination_namedplace_id FOREIGN KEY (namedplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
5004
5005
5006
--
5007 1055 aaronmk
-- Name: locationevent_datasource_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5008
--
5009
5010
5011
5012
5013
--
5014 689 aaronmk
-- Name: locationevent_location_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5015
--
5016
5017
ALTER TABLE locationevent
5018
    ADD CONSTRAINT locationevent_location_id FOREIGN KEY (location_id) REFERENCES location(location_id) ON UPDATE CASCADE ON DELETE CASCADE;
5019
5020
5021
--
5022 1099 aaronmk
-- Name: locationevent_method_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5023 898 aaronmk
--
5024
5025
ALTER TABLE locationevent
5026 1099 aaronmk
    ADD CONSTRAINT locationevent_method_id FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE;
5027 898 aaronmk
5028
5029
--
5030 1099 aaronmk
-- Name: locationevent_parent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5031 910 aaronmk
--
5032
5033
ALTER TABLE locationevent
5034 1099 aaronmk
    ADD CONSTRAINT locationevent_parent_id FOREIGN KEY (parent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
5035 910 aaronmk
5036
5037
--
5038 689 aaronmk
-- Name: locationevent_previousobs_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5039
--
5040
5041
ALTER TABLE locationevent
5042
    ADD CONSTRAINT locationevent_previousobs_id FOREIGN KEY (previous_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
5043
5044
5045
--
5046
-- Name: locationevent_project_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5047
--
5048
5049
ALTER TABLE locationevent
5050
    ADD CONSTRAINT locationevent_project_id FOREIGN KEY (project_id) REFERENCES project(project_id) ON UPDATE CASCADE ON DELETE CASCADE;
5051
5052
5053
--
5054
-- Name: locationevent_soiltaxon_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5055
--
5056
5057
ALTER TABLE locationevent
5058
    ADD CONSTRAINT locationevent_soiltaxon_id FOREIGN KEY (soiltaxon_id) REFERENCES soiltaxon(soiltaxon_id) ON UPDATE CASCADE ON DELETE CASCADE;
5059
5060
5061
--
5062
-- Name: locationeventcontributor_locationevent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5063
--
5064
5065
ALTER TABLE locationeventcontributor
5066
    ADD CONSTRAINT locationeventcontributor_locationevent_id FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
5067
5068
5069
--
5070
-- Name: locationeventcontributor_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5071
--
5072
5073
5074
5075 812 aaronmk
5076 689 aaronmk
--
5077
-- Name: locationeventcontributor_role_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5078
--
5079
5080
5081
5082 1168 aaronmk
5083 689 aaronmk
--
5084
-- Name: locationeventsynonym_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5085
--
5086
5087
5088
5089 812 aaronmk
5090 689 aaronmk
--
5091
-- Name: locationeventsynonym_primarylocationevent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5092
--
5093
5094
ALTER TABLE locationeventsynonym
5095
    ADD CONSTRAINT locationeventsynonym_primarylocationevent_id FOREIGN KEY (primarylocationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
5096
5097
5098
--
5099
-- Name: locationeventsynonym_role_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5100
--
5101
5102
5103
5104 1168 aaronmk
5105 689 aaronmk
--
5106
-- Name: locationeventsynonym_synonymlocationevent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5107
--
5108
5109
ALTER TABLE locationeventsynonym
5110
    ADD CONSTRAINT locationeventsynonym_synonymlocationevent_id FOREIGN KEY (synonymlocationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
5111
5112
5113
--
5114 1031 aaronmk
-- Name: method_covermethod_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5115
--
5116
5117
ALTER TABLE method
5118
    ADD CONSTRAINT method_covermethod_id FOREIGN KEY (covermethod_id) REFERENCES covermethod(covermethod_id) ON UPDATE CASCADE ON DELETE CASCADE;
5119
5120
5121
--
5122 907 aaronmk
-- Name: method_reference_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5123
--
5124
5125
5126
5127
5128
--
5129 1162 aaronmk
-- Name: method_subplotmethod_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5130
--
5131
5132
ALTER TABLE method
5133
    ADD CONSTRAINT method_subplotmethod_id FOREIGN KEY (subplotmethod_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE SET NULL;
5134
5135
5136
--
5137 1101 aaronmk
-- Name: methodtaxonclass_method_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5138
--
5139
5140
ALTER TABLE methodtaxonclass
5141
    ADD CONSTRAINT methodtaxonclass_method_id FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE;
5142
5143
5144
--
5145
-- Name: methodtaxonclass_plantconcept_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5146
--
5147
5148
ALTER TABLE methodtaxonclass
5149
    ADD CONSTRAINT methodtaxonclass_plantconcept_id FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
5150
5151
5152
--
5153 1105 aaronmk
-- Name: methodtaxonclass_submethod_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5154
--
5155
5156
ALTER TABLE methodtaxonclass
5157
    ADD CONSTRAINT methodtaxonclass_submethod_id FOREIGN KEY (submethod_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE SET NULL;
5158
5159
5160
--
5161 1312 aaronmk
-- Name: namedplace_parent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5162 689 aaronmk
--
5163
5164 1312 aaronmk
ALTER TABLE namedplace
5165
    ADD CONSTRAINT namedplace_parent_id FOREIGN KEY (parent_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
5166 689 aaronmk
5167
5168
--
5169
-- Name: namedplacecorrelation_childplace_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5170
--
5171
5172
ALTER TABLE namedplacecorrelation
5173
    ADD CONSTRAINT namedplacecorrelation_childplace_id FOREIGN KEY (childplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
5174
5175
5176
--
5177
-- Name: namedplacecorrelation_parentplace_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5178
--
5179
5180
ALTER TABLE namedplacecorrelation
5181
    ADD CONSTRAINT namedplacecorrelation_parentplace_id FOREIGN KEY (parentplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
5182
5183
5184
--
5185
-- Name: note_notelink_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5186
--
5187
5188
ALTER TABLE note
5189
    ADD CONSTRAINT note_notelink_id FOREIGN KEY (notelink_id) REFERENCES notelink(notelink_id) ON UPDATE CASCADE ON DELETE CASCADE;
5190
5191
5192
--
5193
-- Name: note_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5194
--
5195
5196
5197
5198 812 aaronmk
5199 689 aaronmk
--
5200
-- Name: note_role_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5201
--
5202
5203
ALTER TABLE note
5204
    ADD CONSTRAINT note_role_id FOREIGN KEY (role_id) REFERENCES role(role_id) ON UPDATE CASCADE ON DELETE CASCADE;
5205
5206
5207
--
5208
-- Name: party_currentname_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5209
--
5210
5211
ALTER TABLE party
5212
    ADD CONSTRAINT party_currentname_id FOREIGN KEY (currentname_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
5213
5214
5215
--
5216
-- Name: partymember_childparty_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5217
--
5218
5219
ALTER TABLE partymember
5220
    ADD CONSTRAINT partymember_childparty_id FOREIGN KEY (childparty_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
5221
5222
5223
--
5224
-- Name: partymember_parentparty_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5225
--
5226
5227
ALTER TABLE partymember
5228
    ADD CONSTRAINT partymember_parentparty_id FOREIGN KEY (parentparty_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
5229
5230
5231
--
5232
-- Name: partymember_role_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5233
--
5234
5235
ALTER TABLE partymember
5236
    ADD CONSTRAINT partymember_role_id FOREIGN KEY (role_id) REFERENCES role(role_id) ON UPDATE CASCADE ON DELETE CASCADE;
5237
5238
5239
--
5240
-- Name: plantconcept_plantname_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5241
--
5242
5243
ALTER TABLE plantconcept
5244
    ADD CONSTRAINT plantconcept_plantname_id FOREIGN KEY (plantname_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
5245
5246
5247
--
5248
-- Name: plantconcept_reference_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5249
--
5250
5251
5252
5253 812 aaronmk
5254 689 aaronmk
--
5255 903 aaronmk
-- Name: plantconcept_scope_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5256
--
5257
5258
ALTER TABLE plantconcept
5259
    ADD CONSTRAINT plantconcept_scope_id FOREIGN KEY (scope_id) REFERENCES plantconceptscope(plantconceptscope_id) ON UPDATE CASCADE ON DELETE CASCADE;
5260
5261
5262
--
5263
-- Name: plantconceptscope_locationevent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5264
--
5265
5266
ALTER TABLE plantconceptscope
5267
    ADD CONSTRAINT plantconceptscope_locationevent_id FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
5268
5269
5270
--
5271 909 aaronmk
-- Name: plantconceptscope_namedplace_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5272
--
5273
5274
ALTER TABLE plantconceptscope
5275
    ADD CONSTRAINT plantconceptscope_namedplace_id FOREIGN KEY (namedplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
5276
5277
5278
--
5279 903 aaronmk
-- Name: plantconceptscope_project_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5280
--
5281
5282
ALTER TABLE plantconceptscope
5283
    ADD CONSTRAINT plantconceptscope_project_id FOREIGN KEY (project_id) REFERENCES project(project_id) ON UPDATE CASCADE ON DELETE CASCADE;
5284
5285
5286
--
5287 689 aaronmk
-- Name: plantcorrelation_plantconcept_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5288
--
5289
5290
ALTER TABLE plantcorrelation
5291
    ADD CONSTRAINT plantcorrelation_plantconcept_id FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
5292
5293
5294
--
5295
-- Name: plantcorrelation_plantstatus_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5296
--
5297
5298
ALTER TABLE plantcorrelation
5299
    ADD CONSTRAINT plantcorrelation_plantstatus_id FOREIGN KEY (plantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
5300
5301
5302
--
5303
-- Name: plantlineage_childplantstatus_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5304
--
5305
5306
ALTER TABLE plantlineage
5307
    ADD CONSTRAINT plantlineage_childplantstatus_id FOREIGN KEY (childplantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
5308
5309
5310
--
5311
-- Name: plantlineage_parentplantstatus_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5312
--
5313
5314
ALTER TABLE plantlineage
5315
    ADD CONSTRAINT plantlineage_parentplantstatus_id FOREIGN KEY (parentplantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
5316
5317
5318
--
5319
-- Name: plantname_reference_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5320
--
5321
5322
5323
5324 812 aaronmk
5325 689 aaronmk
--
5326
-- Name: plantobservation_plant_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5327
--
5328
5329
ALTER TABLE plantobservation
5330
    ADD CONSTRAINT plantobservation_plant_id FOREIGN KEY (plant_id) REFERENCES plant(plant_id) ON UPDATE CASCADE ON DELETE CASCADE;
5331
5332
5333
--
5334
-- Name: plantstatus_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5335
--
5336
5337
5338
5339 812 aaronmk
5340 689 aaronmk
--
5341
-- Name: plantstatus_plantconcept_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5342
--
5343
5344
ALTER TABLE plantstatus
5345
    ADD CONSTRAINT plantstatus_plantconcept_id FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
5346
5347
5348
--
5349
-- Name: plantstatus_plantparent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5350
--
5351
5352
ALTER TABLE plantstatus
5353
    ADD CONSTRAINT plantstatus_plantparent_id FOREIGN KEY (plantparent_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
5354
5355
5356
--
5357
-- Name: plantstatus_reference_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5358
--
5359
5360
5361
5362 812 aaronmk
5363 689 aaronmk
--
5364
-- Name: plantusage_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5365
--
5366
5367
5368
5369 812 aaronmk
5370 689 aaronmk
--
5371
-- Name: plantusage_plantconcept_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5372
--
5373
5374
ALTER TABLE plantusage
5375
    ADD CONSTRAINT plantusage_plantconcept_id FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
5376
5377
5378
--
5379
-- Name: plantusage_plantname_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5380
--
5381
5382
ALTER TABLE plantusage
5383
    ADD CONSTRAINT plantusage_plantname_id FOREIGN KEY (plantname_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
5384
5385
5386
--
5387
-- Name: plantusage_plantstatus_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5388
--
5389
5390
ALTER TABLE plantusage
5391
    ADD CONSTRAINT plantusage_plantstatus_id FOREIGN KEY (plantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
5392
5393
5394
--
5395 1072 aaronmk
-- Name: project_datasource_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5396 719 aaronmk
--
5397
5398
5399
5400 812 aaronmk
5401 719 aaronmk
--
5402 689 aaronmk
-- Name: projectcontributor_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5403
--
5404
5405
5406
5407 812 aaronmk
5408 689 aaronmk
--
5409
-- Name: projectcontributor_project_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5410
--
5411
5412
ALTER TABLE projectcontributor
5413
    ADD CONSTRAINT projectcontributor_project_id FOREIGN KEY (project_id) REFERENCES project(project_id) ON UPDATE CASCADE ON DELETE CASCADE;
5414
5415
5416
--
5417
-- Name: projectcontributor_role_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5418
--
5419
5420
5421
5422 1168 aaronmk
5423 689 aaronmk
--
5424
-- Name: reference_referencejournal_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5425
--
5426
5427
ALTER TABLE reference
5428
    ADD CONSTRAINT reference_referencejournal_id FOREIGN KEY (referencejournal_id) REFERENCES referencejournal(referencejournal_id) ON UPDATE CASCADE ON DELETE CASCADE;
5429
5430
5431
--
5432
-- Name: referencealtident_reference_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5433
--
5434
5435
ALTER TABLE referencealtident
5436
    ADD CONSTRAINT referencealtident_reference_id FOREIGN KEY (reference_id) REFERENCES reference(reference_id) ON UPDATE CASCADE ON DELETE CASCADE;
5437
5438
5439
--
5440
-- Name: referencecontributor_reference_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5441
--
5442
5443
ALTER TABLE referencecontributor
5444
    ADD CONSTRAINT referencecontributor_reference_id FOREIGN KEY (reference_id) REFERENCES reference(reference_id) ON UPDATE CASCADE ON DELETE CASCADE;
5445
5446
5447
--
5448
-- Name: referencecontributor_referenceparty_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5449
--
5450
5451
ALTER TABLE referencecontributor
5452
    ADD CONSTRAINT referencecontributor_referenceparty_id FOREIGN KEY (referenceparty_id) REFERENCES referenceparty(referenceparty_id) ON UPDATE CASCADE ON DELETE CASCADE;
5453
5454
5455
--
5456
-- Name: referenceparty_currentparty_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5457
--
5458
5459
ALTER TABLE referenceparty
5460
    ADD CONSTRAINT referenceparty_currentparty_id FOREIGN KEY (currentparty_id) REFERENCES referenceparty(referenceparty_id) ON UPDATE CASCADE ON DELETE CASCADE;
5461
5462
5463
--
5464
-- Name: revision_previousrevision_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5465
--
5466
5467
ALTER TABLE revision
5468
    ADD CONSTRAINT revision_previousrevision_id FOREIGN KEY (previousrevision_id) REFERENCES revision(revision_id) ON UPDATE CASCADE ON DELETE CASCADE;
5469
5470
5471
--
5472
-- Name: soilobs_locationevent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5473
--
5474
5475
ALTER TABLE soilobs
5476
    ADD CONSTRAINT soilobs_locationevent_id FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
5477
5478
5479
--
5480
-- Name: soiltaxon_soilparent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5481
--
5482
5483
ALTER TABLE soiltaxon
5484
    ADD CONSTRAINT soiltaxon_soilparent_id FOREIGN KEY (soilparent_id) REFERENCES soiltaxon(soiltaxon_id) ON UPDATE CASCADE ON DELETE CASCADE;
5485
5486
5487
--
5488 1053 aaronmk
-- Name: specimenreplicate_datasource_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5489 689 aaronmk
--
5490
5491
5492
5493 812 aaronmk
5494 689 aaronmk
--
5495 1053 aaronmk
-- Name: specimenreplicate_museum_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5496 689 aaronmk
--
5497
5498
5499
5500 812 aaronmk
5501 689 aaronmk
--
5502
-- Name: specimenreplicate_specimen_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5503
--
5504
5505
ALTER TABLE specimenreplicate
5506
    ADD CONSTRAINT specimenreplicate_specimen_id FOREIGN KEY (specimen_id) REFERENCES specimen(specimen_id) ON UPDATE CASCADE ON DELETE CASCADE;
5507
5508
5509
--
5510
-- Name: specimenreplicate_taxonoccurrence_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5511
--
5512
5513
ALTER TABLE specimenreplicate
5514
    ADD CONSTRAINT specimenreplicate_taxonoccurrence_id FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
5515
5516
5517
--
5518
-- Name: stemobservation_plantobservation_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5519
--
5520
5521
ALTER TABLE stemobservation
5522
    ADD CONSTRAINT stemobservation_plantobservation_id FOREIGN KEY (plantobservation_id) REFERENCES plantobservation(plantobservation_id) ON UPDATE CASCADE ON DELETE CASCADE;
5523
5524
5525
--
5526 1058 aaronmk
-- Name: stemtag_stemobservation_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5527
--
5528
5529
ALTER TABLE stemtag
5530
    ADD CONSTRAINT stemtag_stemobservation_id FOREIGN KEY (stemobservation_id) REFERENCES stemobservation(stemobservation_id) ON UPDATE CASCADE ON DELETE CASCADE;
5531
5532
5533
--
5534 689 aaronmk
-- Name: stratum_locationevent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5535
--
5536
5537
ALTER TABLE stratum
5538
    ADD CONSTRAINT stratum_locationevent_id FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
5539
5540
5541
--
5542 1029 aaronmk
-- Name: stratum_method_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5543 689 aaronmk
--
5544
5545
ALTER TABLE stratum
5546 1029 aaronmk
    ADD CONSTRAINT stratum_method_id FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE;
5547 689 aaronmk
5548
5549
--
5550
-- Name: taxonalt_plantconcept_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5551
--
5552
5553
ALTER TABLE taxonalt
5554
    ADD CONSTRAINT taxonalt_plantconcept_id FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
5555
5556
5557
--
5558
-- Name: taxonalt_taxondetermination_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5559
--
5560
5561
ALTER TABLE taxonalt
5562
    ADD CONSTRAINT taxonalt_taxondetermination_id FOREIGN KEY (taxondetermination_id) REFERENCES taxondetermination(taxondetermination_id) ON UPDATE CASCADE ON DELETE CASCADE;
5563
5564
5565
--
5566
-- Name: taxondetermination_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5567
--
5568
5569
5570
5571 812 aaronmk
5572 689 aaronmk
--
5573
-- Name: taxondetermination_plantconcept_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5574
--
5575
5576
ALTER TABLE taxondetermination
5577
    ADD CONSTRAINT taxondetermination_plantconcept_id FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
5578
5579
5580
--
5581
-- Name: taxondetermination_reference_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5582
--
5583
5584
5585
5586 812 aaronmk
5587 689 aaronmk
--
5588
-- Name: taxondetermination_role_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5589
--
5590
5591
5592
5593 1168 aaronmk
5594 689 aaronmk
--
5595
-- Name: taxondetermination_taxonoccurrence_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5596
--
5597
5598
ALTER TABLE taxondetermination
5599
    ADD CONSTRAINT taxondetermination_taxonoccurrence_id FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
5600
5601
5602
--
5603
-- Name: taxonoccurrence_locationevent_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5604
--
5605
5606
ALTER TABLE taxonoccurrence
5607
    ADD CONSTRAINT taxonoccurrence_locationevent_id FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
5608
5609
5610
--
5611
-- Name: telephone_party_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5612
--
5613
5614
ALTER TABLE telephone
5615
    ADD CONSTRAINT telephone_party_id FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
5616
5617
5618
--
5619
-- Name: trait_stemobservation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
5620
--
5621
5622
ALTER TABLE trait
5623
    ADD CONSTRAINT trait_stemobservation_id_fkey FOREIGN KEY (stemobservation_id) REFERENCES stemobservation(stemobservation_id) ON UPDATE CASCADE ON DELETE CASCADE;
5624
5625
5626
--
5627
-- Name: voucher_specimenreplicate_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5628
--
5629
5630
ALTER TABLE voucher
5631
    ADD CONSTRAINT voucher_specimenreplicate_id FOREIGN KEY (specimenreplicate_id) REFERENCES specimenreplicate(specimenreplicate_id) ON UPDATE CASCADE ON DELETE CASCADE;
5632
5633
5634
--
5635
-- Name: voucher_taxonoccurrence_id; Type: FK CONSTRAINT; Schema: public; Owner: -
5636
--
5637
5638
ALTER TABLE voucher
5639
    ADD CONSTRAINT voucher_taxonoccurrence_id FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
5640
5641
5642
--
5643
-- PostgreSQL database dump complete
5644
--