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