Project

General

Profile

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