Project

General

Profile

1
--
2
-- PostgreSQL database dump
3
--
4

    
5

    
6

    
7

    
8

    
9

    
10

    
11

    
12

    
13

    
14
--
15
-- 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
-- Name: occurrencestatus_dwc; Type: TYPE; Schema: public; Owner: -
37
--
38

    
39

    
40

    
41

    
42
--
43
-- 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
-- Name: role; Type: TYPE; Schema: public; Owner: -
58
--
59

    
60

    
61

    
62

    
63
--
64
-- Name: taxonclass; Type: TYPE; Schema: public; Owner: -
65
--
66

    
67

    
68

    
69

    
70
--
71
-- Name: TYPE taxonclass; Type: COMMENT; Schema: public; Owner: -
72
--
73

    
74

    
75

    
76

    
77
--
78
-- Name: taxonrank; Type: TYPE; Schema: public; Owner: -
79
--
80

    
81

    
82

    
83

    
84
--
85
-- Name: namedplace_update_ancestors(); Type: FUNCTION; Schema: public; Owner: -
86
--
87

    
88

    
89

    
90

    
91
--
92
-- Name: plantname_update_ancestors(); Type: FUNCTION; Schema: public; Owner: -
93
--
94

    
95

    
96

    
97

    
98
--
99
-- Name: plantobservation_aggregateoccurrence_count_1(); Type: FUNCTION; Schema: public; Owner: -
100
--
101

    
102

    
103

    
104

    
105
--
106
-- Name: concat(text); Type: AGGREGATE; Schema: public; Owner: -
107
--
108

    
109

    
110

    
111

    
112

    
113

    
114

    
115

    
116
--
117
-- Name: address; Type: TABLE; Schema: public; Owner: -; Tablespace: 
118
--
119

    
120
CREATE TABLE address (
121
    address_id int(11) NOT NULL,
122
    party_id int(11) NOT NULL,
123
    organization_id int(11),
124
    orgposition text,
125
    email text,
126
    deliverypoint text,
127
    city text,
128
    administrativearea text,
129
    postalcode text,
130
    country text,
131
    currentflag int(1),
132
    addressstartdate timestamp NULL
133
);
134

    
135

    
136
--
137
-- Name: address_address_id_seq; Type: SEQUENCE; Schema: public; Owner: -
138
--
139

    
140

    
141

    
142

    
143
--
144
-- Name: address_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
145
--
146

    
147

    
148

    
149

    
150
--
151
-- Name: aggregateoccurrence; Type: TABLE; Schema: public; Owner: -; Tablespace: 
152
--
153

    
154
CREATE TABLE aggregateoccurrence (
155
    aggregateoccurrence_id int(11) NOT NULL,
156
    datasource_id int(11) NOT NULL,
157
    sourceaccessioncode text,
158
    taxonoccurrence_id int(11) NOT NULL,
159
    collectiondate timestamp NULL,
160
    cover double precision,
161
    linecover double precision,
162
    basalarea double precision,
163
    biomass double precision,
164
    inferencearea double precision,
165
    count int(11),
166
    stratum_id int(11),
167
    coverindex_id int(11),
168
    occurrencestatus_dwc text DEFAULT 'present' NOT NULL,
169
    method_id int(11),
170
    notes text,
171
    accessioncode text
172
);
173

    
174

    
175
--
176
-- Name: TABLE aggregateoccurrence; Type: COMMENT; Schema: public; Owner: -
177
--
178

    
179

    
180

    
181

    
182
--
183
-- Name: COLUMN aggregateoccurrence.linecover; Type: COMMENT; Schema: public; Owner: -
184
--
185

    
186

    
187

    
188

    
189
--
190
-- Name: COLUMN aggregateoccurrence.occurrencestatus_dwc; Type: COMMENT; Schema: public; Owner: -
191
--
192

    
193

    
194

    
195

    
196
--
197
-- Name: aggregateoccurrence_aggregateoccurrence_id_seq; Type: SEQUENCE; Schema: public; Owner: -
198
--
199

    
200

    
201

    
202

    
203
--
204
-- Name: aggregateoccurrence_aggregateoccurrence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
205
--
206

    
207

    
208

    
209

    
210
--
211
-- Name: classcontributor; Type: TABLE; Schema: public; Owner: -; Tablespace: 
212
--
213

    
214
CREATE TABLE classcontributor (
215
    classcontributor_id int(11) NOT NULL,
216
    commclass_id int(11) NOT NULL,
217
    party_id int(11) NOT NULL,
218
    role text
219
);
220

    
221

    
222
--
223
-- Name: classcontributor_classcontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: -
224
--
225

    
226

    
227

    
228

    
229
--
230
-- Name: classcontributor_classcontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
231
--
232

    
233

    
234

    
235

    
236
--
237
-- Name: commclass; Type: TABLE; Schema: public; Owner: -; Tablespace: 
238
--
239

    
240
CREATE TABLE commclass (
241
    commclass_id int(11) NOT NULL,
242
    locationevent_id int(11) NOT NULL,
243
    inspection int(1),
244
    tableanalysis int(1),
245
    multivariateanalysis int(1),
246
    classpublication_id int(11),
247
    classnotes text,
248
    commname text,
249
    commcode text,
250
    commframework text,
251
    commlevel text,
252
    classstartdate timestamp NULL,
253
    classstopdate timestamp NULL,
254
    expertsystem text,
255
    accessioncode text
256
);
257

    
258

    
259
--
260
-- Name: commclass_commclass_id_seq; Type: SEQUENCE; Schema: public; Owner: -
261
--
262

    
263

    
264

    
265

    
266
--
267
-- Name: commclass_commclass_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
268
--
269

    
270

    
271

    
272

    
273
--
274
-- Name: commconcept; Type: TABLE; Schema: public; Owner: -; Tablespace: 
275
--
276

    
277
CREATE TABLE commconcept (
278
    commconcept_id int(11) NOT NULL,
279
    commname_id int(11) NOT NULL,
280
    reference_id int(11),
281
    commdescription text,
282
    d_obscount int(11),
283
    commname text,
284
    d_currentaccepted int(1),
285
    accessioncode text
286
);
287

    
288

    
289
--
290
-- Name: commconcept_commconcept_id_seq; Type: SEQUENCE; Schema: public; Owner: -
291
--
292

    
293

    
294

    
295

    
296
--
297
-- Name: commconcept_commconcept_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
298
--
299

    
300

    
301

    
302

    
303
--
304
-- Name: commcorrelation; Type: TABLE; Schema: public; Owner: -; Tablespace: 
305
--
306

    
307
CREATE TABLE commcorrelation (
308
    commcorrelation_id int(11) NOT NULL,
309
    commstatus_id int(11) NOT NULL,
310
    commconcept_id int(11) NOT NULL,
311
    commconvergence text NOT NULL,
312
    correlationstart timestamp NOT NULL,
313
    correlationstop timestamp NULL
314
);
315

    
316

    
317
--
318
-- Name: commcorrelation_commcorrelation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
319
--
320

    
321

    
322

    
323

    
324
--
325
-- Name: commcorrelation_commcorrelation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
326
--
327

    
328

    
329

    
330

    
331
--
332
-- Name: commdetermination; Type: TABLE; Schema: public; Owner: -; Tablespace: 
333
--
334

    
335
CREATE TABLE commdetermination (
336
    commdetermination_id int(11) NOT NULL,
337
    commclass_id int(11) NOT NULL,
338
    commconcept_id int(11) NOT NULL,
339
    commcode text,
340
    commname text,
341
    classfit text,
342
    classconfidence text,
343
    commauthority_id int(11),
344
    notes text,
345
    type int(1),
346
    nomenclaturaltype int(1)
347
);
348

    
349

    
350
--
351
-- Name: commdetermination_commdetermination_id_seq; Type: SEQUENCE; Schema: public; Owner: -
352
--
353

    
354

    
355

    
356

    
357
--
358
-- Name: commdetermination_commdetermination_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
359
--
360

    
361

    
362

    
363

    
364
--
365
-- Name: commlineage; Type: TABLE; Schema: public; Owner: -; Tablespace: 
366
--
367

    
368
CREATE TABLE commlineage (
369
    commlineage_id int(11) NOT NULL,
370
    parentcommstatus_id int(11) NOT NULL,
371
    childcommstatus_id int(11) NOT NULL
372
);
373

    
374

    
375
--
376
-- Name: commlineage_commlineage_id_seq; Type: SEQUENCE; Schema: public; Owner: -
377
--
378

    
379

    
380

    
381

    
382
--
383
-- Name: commlineage_commlineage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
384
--
385

    
386

    
387

    
388

    
389
--
390
-- Name: commname; Type: TABLE; Schema: public; Owner: -; Tablespace: 
391
--
392

    
393
CREATE TABLE commname (
394
    commname_id int(11) NOT NULL,
395
    commname text NOT NULL,
396
    reference_id int(11),
397
    dateentered timestamp NULL 
398
);
399

    
400

    
401
--
402
-- Name: commname_commname_id_seq; Type: SEQUENCE; Schema: public; Owner: -
403
--
404

    
405

    
406

    
407

    
408
--
409
-- Name: commname_commname_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
410
--
411

    
412

    
413

    
414

    
415
--
416
-- Name: commstatus; Type: TABLE; Schema: public; Owner: -; Tablespace: 
417
--
418

    
419
CREATE TABLE commstatus (
420
    commstatus_id int(11) NOT NULL,
421
    commconcept_id int(11) NOT NULL,
422
    reference_id int(11),
423
    commconceptstatus text NOT NULL,
424
    commparent_id int(11),
425
    commlevel text,
426
    commpartycomments text,
427
    party_id int(11) NOT NULL,
428
    startdate timestamp NOT NULL,
429
    stopdate timestamp NULL,
430
    accessioncode text
431
);
432

    
433

    
434
--
435
-- Name: commstatus_commstatus_id_seq; Type: SEQUENCE; Schema: public; Owner: -
436
--
437

    
438

    
439

    
440

    
441
--
442
-- Name: commstatus_commstatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
443
--
444

    
445

    
446

    
447

    
448
--
449
-- Name: commusage; Type: TABLE; Schema: public; Owner: -; Tablespace: 
450
--
451

    
452
CREATE TABLE commusage (
453
    commusage_id int(11) NOT NULL,
454
    commname_id int(11) NOT NULL,
455
    commname text,
456
    commconcept_id int(11),
457
    commnamestatus text,
458
    classsystem text,
459
    party_id int(11),
460
    commstatus_id int(11),
461
    usagestart timestamp NULL,
462
    usagestop timestamp NULL
463
);
464

    
465

    
466
--
467
-- Name: commusage_commusage_id_seq; Type: SEQUENCE; Schema: public; Owner: -
468
--
469

    
470

    
471

    
472

    
473
--
474
-- Name: commusage_commusage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
475
--
476

    
477

    
478

    
479

    
480
--
481
-- Name: coverindex; Type: TABLE; Schema: public; Owner: -; Tablespace: 
482
--
483

    
484
CREATE TABLE coverindex (
485
    coverindex_id int(11) NOT NULL,
486
    covermethod_id int(11) NOT NULL,
487
    covercode text NOT NULL,
488
    upperlimit double precision,
489
    lowerlimit double precision,
490
    coverpercent double precision NOT NULL,
491
    indexdescription text
492
);
493

    
494

    
495
--
496
-- Name: coverindex_coverindex_id_seq; Type: SEQUENCE; Schema: public; Owner: -
497
--
498

    
499

    
500

    
501

    
502
--
503
-- Name: coverindex_coverindex_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
504
--
505

    
506

    
507

    
508

    
509
--
510
-- Name: covermethod; Type: TABLE; Schema: public; Owner: -; Tablespace: 
511
--
512

    
513
CREATE TABLE covermethod (
514
    covermethod_id int(11) NOT NULL,
515
    reference_id int(11),
516
    covertype text NOT NULL,
517
    coverestimationmethod text,
518
    accessioncode text
519
);
520

    
521

    
522
--
523
-- Name: covermethod_covermethod_id_seq; Type: SEQUENCE; Schema: public; Owner: -
524
--
525

    
526

    
527

    
528

    
529
--
530
-- Name: covermethod_covermethod_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
531
--
532

    
533

    
534

    
535

    
536
--
537
-- Name: dba_preassignacccode_dba_requestnumber_seq; Type: SEQUENCE; Schema: public; Owner: -
538
--
539

    
540

    
541

    
542

    
543
--
544
-- Name: definedvalue; Type: TABLE; Schema: public; Owner: -; Tablespace: 
545
--
546

    
547
CREATE TABLE definedvalue (
548
    definedvalue_id int(11) NOT NULL,
549
    userdefined_id int(11) NOT NULL,
550
    tablerecord_id int(11) NOT NULL,
551
    definedvalue text
552
);
553

    
554

    
555
--
556
-- Name: definedvalue_definedvalue_id_seq; Type: SEQUENCE; Schema: public; Owner: -
557
--
558

    
559

    
560

    
561

    
562
--
563
-- Name: definedvalue_definedvalue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
564
--
565

    
566

    
567

    
568

    
569
--
570
-- Name: disturbanceobs; Type: TABLE; Schema: public; Owner: -; Tablespace: 
571
--
572

    
573
CREATE TABLE disturbanceobs (
574
    disturbanceobs_id int(11) NOT NULL,
575
    locationevent_id int(11) NOT NULL,
576
    disturbancetype text NOT NULL,
577
    disturbanceintensity text,
578
    disturbanceage double precision,
579
    disturbanceextent double precision,
580
    disturbancecomment text
581
);
582

    
583

    
584
--
585
-- Name: disturbanceobs_disturbanceobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
586
--
587

    
588

    
589

    
590

    
591
--
592
-- Name: disturbanceobs_disturbanceobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
593
--
594

    
595

    
596

    
597

    
598
--
599
-- Name: graphic; Type: TABLE; Schema: public; Owner: -; Tablespace: 
600
--
601

    
602
CREATE TABLE graphic (
603
    graphic_id int(11) NOT NULL,
604
    locationevent_id int(11) NOT NULL,
605
    graphicname text,
606
    graphiclocation text,
607
    graphicdescription text,
608
    graphictype text,
609
    graphicdata int(11),
610
    graphicdate timestamp NULL,
611
    accessioncode text
612
);
613

    
614

    
615
--
616
-- Name: graphic_graphic_id_seq; Type: SEQUENCE; Schema: public; Owner: -
617
--
618

    
619

    
620

    
621

    
622
--
623
-- Name: graphic_graphic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
624
--
625

    
626

    
627

    
628

    
629
--
630
-- Name: location; Type: TABLE; Schema: public; Owner: -; Tablespace: 
631
--
632

    
633
CREATE TABLE location (
634
    location_id int(11) NOT NULL,
635
    datasource_id int(11) NOT NULL,
636
    sourceaccessioncode text,
637
    parent_id int(11),
638
    authorlocationcode text,
639
    centerlatitude double precision,
640
    centerlongitude double precision,
641
    locationaccuracy double precision,
642
    confidentialitystatus int(11) DEFAULT 0 NOT NULL,
643
    confidentialityreason text,
644
    publiclatitude double precision,
645
    publiclongitude double precision,
646
    sublocationxposition double precision,
647
    sublocationyposition double precision,
648
    authore text,
649
    authorn text,
650
    authorzone text,
651
    authordatum text,
652
    authorlocation text,
653
    locationnarrative text,
654
    azimuth double precision,
655
    shape text,
656
    area double precision,
657
    standsize text,
658
    placementmethod text,
659
    permanence int(1),
660
    layoutnarrative text,
661
    elevation double precision,
662
    elevationaccuracy double precision,
663
    elevationrange double precision,
664
    slopeaspect double precision,
665
    minslopeaspect double precision,
666
    maxslopeaspect double precision,
667
    slopegradient double precision,
668
    minslopegradient double precision,
669
    maxslopegradient double precision,
670
    topoposition text,
671
    landform text,
672
    surficialdeposits text,
673
    rocktype text,
674
    stateprovince text,
675
    country text,
676
    submitter_surname text,
677
    submitter_givenname text,
678
    submitter_email text,
679
    notespublic int(1),
680
    notesmgt int(1),
681
    revisions int(1),
682
    dateentered timestamp NULL ,
683
    locationrationalenarrative text,
684
    accessioncode text
685
);
686

    
687

    
688
--
689
-- Name: TABLE location; Type: COMMENT; Schema: public; Owner: -
690
--
691

    
692

    
693

    
694

    
695
--
696
-- Name: location_location_id_seq; Type: SEQUENCE; Schema: public; Owner: -
697
--
698

    
699

    
700

    
701

    
702
--
703
-- Name: location_location_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
704
--
705

    
706

    
707

    
708

    
709
--
710
-- Name: locationdetermination; Type: TABLE; Schema: public; Owner: -; Tablespace: 
711
--
712

    
713
CREATE TABLE locationdetermination (
714
    locationdetermination_id int(11) NOT NULL,
715
    location_id int(11) NOT NULL,
716
    latitude double precision,
717
    longitude double precision,
718
    verbatimlatitude text,
719
    verbatimlongitude text,
720
    verbatimcoordinates text,
721
    footprintgeometry_dwc text,
722
    coordsaccuracy double precision,
723
    namedplace_id int(11),
724
    identifier_id int(11),
725
    determinationdate timestamp NULL,
726
    isoriginal int(1) DEFAULT false NOT NULL,
727
    iscurrent int(1) DEFAULT false NOT NULL,
728
    calculated int(1)
729
);
730

    
731

    
732
--
733
-- Name: TABLE locationdetermination; Type: COMMENT; Schema: public; Owner: -
734
--
735

    
736

    
737

    
738

    
739
--
740
-- Name: COLUMN locationdetermination.footprintgeometry_dwc; Type: COMMENT; Schema: public; Owner: -
741
--
742

    
743

    
744

    
745

    
746
--
747
-- Name: COLUMN locationdetermination.coordsaccuracy; Type: COMMENT; Schema: public; Owner: -
748
--
749

    
750

    
751

    
752

    
753
--
754
-- Name: locationdetermination_locationdetermination_id_seq; Type: SEQUENCE; Schema: public; Owner: -
755
--
756

    
757

    
758

    
759

    
760
--
761
-- Name: locationdetermination_locationdetermination_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
762
--
763

    
764

    
765

    
766

    
767
--
768
-- Name: locationevent; Type: TABLE; Schema: public; Owner: -; Tablespace: 
769
--
770

    
771
CREATE TABLE locationevent (
772
    locationevent_id int(11) NOT NULL,
773
    datasource_id int(11) NOT NULL,
774
    sourceaccessioncode text,
775
    parent_id int(11),
776
    location_id int(11) NOT NULL,
777
    project_id int(11),
778
    authoreventcode text,
779
    previous_id int(11),
780
    dateaccuracy text,
781
    method_id int(11),
782
    temperature double precision,
783
    precipitation double precision,
784
    autotaxoncover int(1),
785
    originaldata text,
786
    effortlevel text,
787
    floristicquality text,
788
    bryophytequality text,
789
    lichenquality text,
790
    locationeventnarrative text,
791
    landscapenarrative text,
792
    homogeneity text,
793
    phenologicaspect text,
794
    representativeness text,
795
    standmaturity text,
796
    successionalstatus text,
797
    basalarea double precision,
798
    hydrologicregime text,
799
    soilmoistureregime text,
800
    soildrainage text,
801
    watersalinity text,
802
    waterdepth double precision,
803
    shoredistance double precision,
804
    soildepth double precision,
805
    organicdepth double precision,
806
    soiltaxon_id int(11),
807
    soiltaxonsrc text,
808
    percentbedrock double precision,
809
    percentrockgravel double precision,
810
    percentwood double precision,
811
    percentlitter double precision,
812
    percentbaresoil double precision,
813
    percentwater double precision,
814
    percentother double precision,
815
    nameother text,
816
    treeht double precision,
817
    shrubht double precision,
818
    fieldht double precision,
819
    nonvascularht double precision,
820
    submergedht double precision,
821
    treecover double precision,
822
    shrubcover double precision,
823
    fieldcover double precision,
824
    nonvascularcover double precision,
825
    floatingcover double precision,
826
    submergedcover double precision,
827
    dominantstratum text,
828
    growthform1type text,
829
    growthform2type text,
830
    growthform3type text,
831
    growthform1cover double precision,
832
    growthform2cover double precision,
833
    growthform3cover double precision,
834
    totalcover double precision,
835
    notespublic int(1),
836
    notesmgt int(1),
837
    revisions int(1),
838
    obsstartdate timestamp NULL,
839
    obsenddate timestamp NULL,
840
    dateentered timestamp NULL ,
841
    toptaxon1name text,
842
    toptaxon2name text,
843
    toptaxon3name text,
844
    toptaxon4name text,
845
    toptaxon5name text,
846
    numberoftaxa int(11),
847
    accessioncode text
848
);
849

    
850

    
851
--
852
-- Name: TABLE locationevent; Type: COMMENT; Schema: public; Owner: -
853
--
854

    
855

    
856

    
857

    
858
--
859
-- Name: locationevent_locationevent_id_seq; Type: SEQUENCE; Schema: public; Owner: -
860
--
861

    
862

    
863

    
864

    
865
--
866
-- Name: locationevent_locationevent_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
867
--
868

    
869

    
870

    
871

    
872
--
873
-- Name: locationeventcontributor; Type: TABLE; Schema: public; Owner: -; Tablespace: 
874
--
875

    
876
CREATE TABLE locationeventcontributor (
877
    locationeventcontributor_id int(11) NOT NULL,
878
    locationevent_id int(11) NOT NULL,
879
    party_id int(11) NOT NULL,
880
    role text NOT NULL,
881
    contributiondate timestamp NULL
882
);
883

    
884

    
885
--
886
-- Name: locationeventcontributor_locationeventcontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: -
887
--
888

    
889

    
890

    
891

    
892
--
893
-- Name: locationeventcontributor_locationeventcontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
894
--
895

    
896

    
897

    
898

    
899
--
900
-- Name: locationeventsynonym; Type: TABLE; Schema: public; Owner: -; Tablespace: 
901
--
902

    
903
CREATE TABLE locationeventsynonym (
904
    locationeventsynonym_id int(11) NOT NULL,
905
    synonymlocationevent_id int(11) NOT NULL,
906
    primarylocationevent_id int(11) NOT NULL,
907
    party_id int(11) NOT NULL,
908
    role text NOT NULL,
909
    synonymcomment text,
910
    classstartdate timestamp NULL  NOT NULL,
911
    classstopdate timestamp NULL,
912
    accessioncode text
913
);
914

    
915

    
916
--
917
-- Name: locationeventsynonym_locationeventsynonym_id_seq; Type: SEQUENCE; Schema: public; Owner: -
918
--
919

    
920

    
921

    
922

    
923
--
924
-- Name: locationeventsynonym_locationeventsynonym_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
925
--
926

    
927

    
928

    
929

    
930
--
931
-- Name: method; Type: TABLE; Schema: public; Owner: -; Tablespace: 
932
--
933

    
934
CREATE TABLE method (
935
    method_id int(11) NOT NULL,
936
    reference_id int(11),
937
    name text NOT NULL,
938
    description text,
939
    diameterheight double precision,
940
    mindiameter double precision,
941
    maxdiameter double precision,
942
    minheight double precision,
943
    maxheight double precision,
944
    observationtype text,
945
    observationmeasure text,
946
    covermethod_id int(11),
947
    samplingfactor double precision DEFAULT 1 NOT NULL,
948
    coverbasis text,
949
    stemsamplemethod text,
950
    shape text,
951
    length double precision,
952
    width double precision,
953
    radius double precision,
954
    area double precision,
955
    samplearea double precision,
956
    subplotspacing double precision,
957
    subplotmethod_id int(11),
958
    pointsperline int(11),
959
    accessioncode text
960
);
961

    
962

    
963
--
964
-- Name: TABLE method; Type: COMMENT; Schema: public; Owner: -
965
--
966

    
967

    
968

    
969

    
970
--
971
-- Name: COLUMN method.reference_id; Type: COMMENT; Schema: public; Owner: -
972
--
973

    
974

    
975

    
976

    
977
--
978
-- Name: COLUMN method.name; Type: COMMENT; Schema: public; Owner: -
979
--
980

    
981

    
982

    
983

    
984
--
985
-- Name: COLUMN method.description; Type: COMMENT; Schema: public; Owner: -
986
--
987

    
988

    
989

    
990

    
991
--
992
-- Name: COLUMN method.diameterheight; Type: COMMENT; Schema: public; Owner: -
993
--
994

    
995

    
996

    
997

    
998
--
999
-- Name: COLUMN method.mindiameter; Type: COMMENT; Schema: public; Owner: -
1000
--
1001

    
1002

    
1003

    
1004

    
1005
--
1006
-- Name: COLUMN method.maxdiameter; Type: COMMENT; Schema: public; Owner: -
1007
--
1008

    
1009

    
1010

    
1011

    
1012
--
1013
-- Name: COLUMN method.minheight; Type: COMMENT; Schema: public; Owner: -
1014
--
1015

    
1016

    
1017

    
1018

    
1019
--
1020
-- Name: COLUMN method.maxheight; Type: COMMENT; Schema: public; Owner: -
1021
--
1022

    
1023

    
1024

    
1025

    
1026
--
1027
-- Name: COLUMN method.observationtype; Type: COMMENT; Schema: public; Owner: -
1028
--
1029

    
1030

    
1031

    
1032

    
1033
--
1034
-- Name: COLUMN method.observationmeasure; Type: COMMENT; Schema: public; Owner: -
1035
--
1036

    
1037

    
1038

    
1039

    
1040
--
1041
-- Name: COLUMN method.samplingfactor; Type: COMMENT; Schema: public; Owner: -
1042
--
1043

    
1044

    
1045

    
1046

    
1047
--
1048
-- Name: COLUMN method.coverbasis; Type: COMMENT; Schema: public; Owner: -
1049
--
1050

    
1051

    
1052

    
1053

    
1054
--
1055
-- Name: COLUMN method.stemsamplemethod; Type: COMMENT; Schema: public; Owner: -
1056
--
1057

    
1058

    
1059

    
1060

    
1061
--
1062
-- Name: COLUMN method.shape; Type: COMMENT; Schema: public; Owner: -
1063
--
1064

    
1065

    
1066

    
1067

    
1068
--
1069
-- Name: COLUMN method.length; Type: COMMENT; Schema: public; Owner: -
1070
--
1071

    
1072

    
1073

    
1074

    
1075
--
1076
-- Name: COLUMN method.width; Type: COMMENT; Schema: public; Owner: -
1077
--
1078

    
1079

    
1080

    
1081

    
1082
--
1083
-- Name: COLUMN method.radius; Type: COMMENT; Schema: public; Owner: -
1084
--
1085

    
1086

    
1087

    
1088

    
1089
--
1090
-- Name: COLUMN method.area; Type: COMMENT; Schema: public; Owner: -
1091
--
1092

    
1093

    
1094

    
1095

    
1096
--
1097
-- Name: COLUMN method.samplearea; Type: COMMENT; Schema: public; Owner: -
1098
--
1099

    
1100

    
1101

    
1102

    
1103
--
1104
-- Name: COLUMN method.subplotspacing; Type: COMMENT; Schema: public; Owner: -
1105
--
1106

    
1107

    
1108

    
1109

    
1110
--
1111
-- Name: COLUMN method.subplotmethod_id; Type: COMMENT; Schema: public; Owner: -
1112
--
1113

    
1114

    
1115

    
1116

    
1117
--
1118
-- Name: COLUMN method.pointsperline; Type: COMMENT; Schema: public; Owner: -
1119
--
1120

    
1121

    
1122

    
1123

    
1124
--
1125
-- Name: method_method_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1126
--
1127

    
1128

    
1129

    
1130

    
1131
--
1132
-- Name: method_method_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1133
--
1134

    
1135

    
1136

    
1137

    
1138

    
1139

    
1140
--
1141
-- Name: methodtaxonclass; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1142
--
1143

    
1144
CREATE TABLE methodtaxonclass (
1145
    methodtaxonclass_id int(11) NOT NULL,
1146
    method_id int(11) NOT NULL,
1147
    plantconcept_id int(11),
1148
    included int(1) NOT NULL,
1149
    submethod_id int(11),
1150
    taxonclass text
1151
);
1152

    
1153

    
1154
--
1155
-- Name: COLUMN methodtaxonclass.included; Type: COMMENT; Schema: public; Owner: -
1156
--
1157

    
1158

    
1159

    
1160

    
1161
--
1162
-- Name: COLUMN methodtaxonclass.submethod_id; Type: COMMENT; Schema: public; Owner: -
1163
--
1164

    
1165

    
1166

    
1167

    
1168
--
1169
-- Name: methodtaxonclass_methodtaxonclass_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1170
--
1171

    
1172

    
1173

    
1174

    
1175
--
1176
-- Name: methodtaxonclass_methodtaxonclass_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1177
--
1178

    
1179

    
1180

    
1181

    
1182

    
1183

    
1184
--
1185
-- Name: namedplace; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1186
--
1187

    
1188
CREATE TABLE namedplace (
1189
    namedplace_id int(11) NOT NULL,
1190
    parent_id int(11),
1191
    rank text NOT NULL,
1192
    placename text NOT NULL,
1193
    placecode text,
1194
    placedescription text,
1195
    accessioncode text
1196
);
1197

    
1198

    
1199

    
1200

    
1201
--
1202
-- Name: namedplace_ancestor; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1203
--
1204

    
1205
CREATE TABLE namedplace_ancestor (
1206
    namedplace_id int(11) NOT NULL,
1207
    ancestor_id int(11) NOT NULL
1208
);
1209

    
1210

    
1211
--
1212
-- Name: namedplace_namedplace_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1213
--
1214

    
1215

    
1216

    
1217

    
1218
--
1219
-- Name: namedplace_namedplace_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1220
--
1221

    
1222

    
1223

    
1224

    
1225

    
1226

    
1227
--
1228
-- Name: namedplacecorrelation; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1229
--
1230

    
1231
CREATE TABLE namedplacecorrelation (
1232
    namedplacecorrelation_id int(11) NOT NULL,
1233
    parentplace_id int(11) NOT NULL,
1234
    childplace_id int(11) NOT NULL,
1235
    placeconvergence text NOT NULL
1236
);
1237

    
1238

    
1239
--
1240
-- Name: namedplacecorrelation_namedplacecorrelation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1241
--
1242

    
1243

    
1244

    
1245

    
1246
--
1247
-- Name: namedplacecorrelation_namedplacecorrelation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1248
--
1249

    
1250

    
1251

    
1252

    
1253
--
1254
-- Name: note; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1255
--
1256

    
1257
CREATE TABLE note (
1258
    note_id int(11) NOT NULL,
1259
    notelink_id int(11) NOT NULL,
1260
    party_id int(11) NOT NULL,
1261
    role text NOT NULL,
1262
    notetype text NOT NULL,
1263
    notetext text NOT NULL,
1264
    notedate timestamp NULL,
1265
    accessioncode text
1266
);
1267

    
1268

    
1269
--
1270
-- Name: note_note_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1271
--
1272

    
1273

    
1274

    
1275

    
1276
--
1277
-- Name: note_note_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1278
--
1279

    
1280

    
1281

    
1282

    
1283
--
1284
-- Name: notelink; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1285
--
1286

    
1287
CREATE TABLE notelink (
1288
    notelink_id int(11) NOT NULL,
1289
    tablename text NOT NULL,
1290
    attributename text,
1291
    tablerecord int(11) NOT NULL
1292
);
1293

    
1294

    
1295
--
1296
-- Name: notelink_notelink_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1297
--
1298

    
1299

    
1300

    
1301

    
1302
--
1303
-- Name: notelink_notelink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1304
--
1305

    
1306

    
1307

    
1308

    
1309
--
1310
-- Name: party; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1311
--
1312

    
1313
CREATE TABLE party (
1314
    party_id int(11) NOT NULL,
1315
    salutation text,
1316
    givenname text,
1317
    middlename text,
1318
    surname text,
1319
    organizationname text,
1320
    currentname_id int(11),
1321
    contactinstructions text,
1322
    email text,
1323
    partytype text,
1324
    partypublic int(1) DEFAULT true,
1325
    d_obscount int(11),
1326
    accessioncode text
1327
);
1328

    
1329

    
1330
--
1331
-- Name: party_party_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1332
--
1333

    
1334

    
1335

    
1336

    
1337
--
1338
-- Name: party_party_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1339
--
1340

    
1341

    
1342

    
1343

    
1344
--
1345
-- Name: partymember; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1346
--
1347

    
1348
CREATE TABLE partymember (
1349
    partymember_id int(11) NOT NULL,
1350
    parentparty_id int(11) NOT NULL,
1351
    childparty_id int(11) NOT NULL,
1352
    role text,
1353
    memberstart timestamp NULL  NOT NULL,
1354
    memberstop timestamp NULL
1355
);
1356

    
1357

    
1358
--
1359
-- Name: partymember_partymember_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1360
--
1361

    
1362

    
1363

    
1364

    
1365
--
1366
-- Name: partymember_partymember_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1367
--
1368

    
1369

    
1370

    
1371

    
1372

    
1373

    
1374
--
1375
-- Name: plant; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1376
--
1377

    
1378
CREATE TABLE plant (
1379
    plant_id int(11) NOT NULL
1380
);
1381

    
1382

    
1383
--
1384
-- Name: TABLE plant; Type: COMMENT; Schema: public; Owner: -
1385
--
1386

    
1387

    
1388

    
1389

    
1390
--
1391
-- Name: plant_plant_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1392
--
1393

    
1394

    
1395

    
1396

    
1397
--
1398
-- Name: plant_plant_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1399
--
1400

    
1401

    
1402

    
1403

    
1404

    
1405

    
1406
--
1407
-- Name: plantconcept; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1408
--
1409

    
1410
CREATE TABLE plantconcept (
1411
    plantconcept_id int(11) NOT NULL,
1412
    plantname_id int(11) NOT NULL,
1413
    plantcode text,
1414
    plantdescription text,
1415
    accessioncode text
1416
);
1417

    
1418

    
1419
--
1420
-- Name: plantconcept_plantconcept_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1421
--
1422

    
1423

    
1424

    
1425

    
1426
--
1427
-- Name: plantconcept_plantconcept_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1428
--
1429

    
1430

    
1431

    
1432

    
1433
--
1434
-- Name: plantcorrelation; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1435
--
1436

    
1437
CREATE TABLE plantcorrelation (
1438
    plantcorrelation_id int(11) NOT NULL,
1439
    plantstatus_id int(11) NOT NULL,
1440
    plantconcept_id int(11) NOT NULL,
1441
    plantconvergence text NOT NULL,
1442
    correlationstart timestamp NOT NULL,
1443
    correlationstop timestamp NULL
1444
);
1445

    
1446

    
1447
--
1448
-- Name: plantcorrelation_plantcorrelation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1449
--
1450

    
1451

    
1452

    
1453

    
1454
--
1455
-- Name: plantcorrelation_plantcorrelation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1456
--
1457

    
1458

    
1459

    
1460

    
1461
--
1462
-- Name: plantlineage; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1463
--
1464

    
1465
CREATE TABLE plantlineage (
1466
    plantlineage_id int(11) NOT NULL,
1467
    childplantstatus_id int(11) NOT NULL,
1468
    parentplantstatus_id int(11) NOT NULL
1469
);
1470

    
1471

    
1472
--
1473
-- Name: plantlineage_plantlineage_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1474
--
1475

    
1476

    
1477

    
1478

    
1479
--
1480
-- Name: plantlineage_plantlineage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1481
--
1482

    
1483

    
1484

    
1485

    
1486
--
1487
-- Name: plantname; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1488
--
1489

    
1490
CREATE TABLE plantname (
1491
    plantname_id int(11) NOT NULL,
1492
    parent_id int(11),
1493
    scope_id int(11),
1494
    rank text NOT NULL,
1495
    plantname text NOT NULL,
1496
    accessioncode text
1497
);
1498

    
1499

    
1500

    
1501

    
1502
--
1503
-- Name: plantname_ancestor; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1504
--
1505

    
1506
CREATE TABLE plantname_ancestor (
1507
    plantname_id int(11) NOT NULL,
1508
    ancestor_id int(11) NOT NULL
1509
);
1510

    
1511

    
1512
--
1513
-- Name: plantname_plantname_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1514
--
1515

    
1516

    
1517

    
1518

    
1519
--
1520
-- Name: plantname_plantname_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1521
--
1522

    
1523

    
1524

    
1525

    
1526
--
1527
-- Name: plantnamescope; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1528
--
1529

    
1530
CREATE TABLE plantnamescope (
1531
    plantnamescope_id int(11) NOT NULL,
1532
    locationevent_id int(11),
1533
    project_id int(11),
1534
    namedplace_id int(11)
1535
);
1536

    
1537

    
1538
--
1539
-- Name: plantnamescope_plantnamescope_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1540
--
1541

    
1542

    
1543

    
1544

    
1545
--
1546
-- Name: plantnamescope_plantnamescope_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1547
--
1548

    
1549

    
1550

    
1551

    
1552

    
1553

    
1554
--
1555
-- Name: plantobservation; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1556
--
1557

    
1558
CREATE TABLE plantobservation (
1559
    plantobservation_id int(11) NOT NULL,
1560
    datasource_id int(11) NOT NULL,
1561
    sourceaccessioncode text,
1562
    aggregateoccurrence_id int(11) NOT NULL,
1563
    overallheight double precision,
1564
    overallheightaccuracy double precision,
1565
    collectionnumber text,
1566
    stemcount int(11),
1567
    plant_id int(11),
1568
    accessioncode text
1569
);
1570

    
1571

    
1572
--
1573
-- Name: TABLE plantobservation; Type: COMMENT; Schema: public; Owner: -
1574
--
1575

    
1576

    
1577

    
1578

    
1579
--
1580
-- Name: COLUMN plantobservation.collectionnumber; Type: COMMENT; Schema: public; Owner: -
1581
--
1582

    
1583

    
1584

    
1585

    
1586
--
1587
-- Name: plantobservation_plantobservation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1588
--
1589

    
1590

    
1591

    
1592

    
1593
--
1594
-- Name: plantobservation_plantobservation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1595
--
1596

    
1597

    
1598

    
1599

    
1600
--
1601
-- Name: plantstatus; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1602
--
1603

    
1604
CREATE TABLE plantstatus (
1605
    plantstatus_id int(11) NOT NULL,
1606
    plantconcept_id int(11) NOT NULL,
1607
    party_id int(11),
1608
    plantconceptstatus text DEFAULT 'undetermined' NOT NULL,
1609
    reference_id int(11),
1610
    plantpartycomments text,
1611
    startdate timestamp NULL,
1612
    stopdate timestamp NULL,
1613
    accessioncode text
1614
);
1615

    
1616

    
1617
--
1618
-- Name: plantstatus_plantstatus_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1619
--
1620

    
1621

    
1622

    
1623

    
1624
--
1625
-- Name: plantstatus_plantstatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1626
--
1627

    
1628

    
1629

    
1630

    
1631
--
1632
-- Name: plantusage; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1633
--
1634

    
1635
CREATE TABLE plantusage (
1636
    plantusage_id int(11) NOT NULL,
1637
    plantname_id int(11) NOT NULL,
1638
    plantconcept_id int(11),
1639
    plantnamestatus text,
1640
    plantname text,
1641
    classsystem text,
1642
    acceptedsynonym text,
1643
    party_id int(11),
1644
    plantstatus_id int(11),
1645
    usagestart timestamp NULL,
1646
    usagestop timestamp NULL
1647
);
1648

    
1649

    
1650
--
1651
-- Name: plantusage_plantusage_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1652
--
1653

    
1654

    
1655

    
1656

    
1657
--
1658
-- Name: plantusage_plantusage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1659
--
1660

    
1661

    
1662

    
1663

    
1664
--
1665
-- Name: project; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1666
--
1667

    
1668
CREATE TABLE project (
1669
    project_id int(11) NOT NULL,
1670
    datasource_id int(11) NOT NULL,
1671
    sourceaccessioncode text,
1672
    projectname text NOT NULL,
1673
    projectdescription text,
1674
    startdate timestamp NULL,
1675
    stopdate timestamp NULL,
1676
    d_obscount int(11),
1677
    d_lastlocationaddeddate timestamp NULL,
1678
    accessioncode text
1679
);
1680

    
1681

    
1682
--
1683
-- Name: project_project_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1684
--
1685

    
1686

    
1687

    
1688

    
1689
--
1690
-- Name: project_project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1691
--
1692

    
1693

    
1694

    
1695

    
1696
--
1697
-- Name: projectcontributor; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1698
--
1699

    
1700
CREATE TABLE projectcontributor (
1701
    projectcontributor_id int(11) NOT NULL,
1702
    project_id int(11) NOT NULL,
1703
    party_id int(11) NOT NULL,
1704
    role text,
1705
    surname text,
1706
    cheatrole text
1707
);
1708

    
1709

    
1710
--
1711
-- Name: projectcontributor_projectcontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1712
--
1713

    
1714

    
1715

    
1716

    
1717
--
1718
-- Name: projectcontributor_projectcontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1719
--
1720

    
1721

    
1722

    
1723

    
1724
--
1725
-- Name: reference; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1726
--
1727

    
1728
CREATE TABLE reference (
1729
    reference_id int(11) NOT NULL,
1730
    shortname text,
1731
    fulltext__ text,
1732
    referencetype text,
1733
    title text,
1734
    titlesuperior text,
1735
    referencejournal_id int(11),
1736
    volume text,
1737
    issue text,
1738
    pagerange text,
1739
    totalpages int(11),
1740
    publisher text,
1741
    publicationplace text,
1742
    isbn text,
1743
    edition text,
1744
    numberofvolumes int(11),
1745
    chapternumber int(11),
1746
    reportnumber int(11),
1747
    communicationtype text,
1748
    degree text,
1749
    url text,
1750
    doi text,
1751
    additionalinfo text,
1752
    pubdate timestamp NULL,
1753
    accessdate timestamp NULL,
1754
    conferencedate timestamp NULL,
1755
    accessioncode text
1756
);
1757

    
1758

    
1759
--
1760
-- Name: reference_reference_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1761
--
1762

    
1763

    
1764

    
1765

    
1766
--
1767
-- Name: reference_reference_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1768
--
1769

    
1770

    
1771

    
1772

    
1773
--
1774
-- Name: referencealtident; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1775
--
1776

    
1777
CREATE TABLE referencealtident (
1778
    referencealtident_id int(11) NOT NULL,
1779
    reference_id int(11) NOT NULL,
1780
    system text,
1781
    identifier text NOT NULL
1782
);
1783

    
1784

    
1785
--
1786
-- Name: referencealtident_referencealtident_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1787
--
1788

    
1789

    
1790

    
1791

    
1792
--
1793
-- Name: referencealtident_referencealtident_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1794
--
1795

    
1796

    
1797

    
1798

    
1799
--
1800
-- Name: referencecontributor; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1801
--
1802

    
1803
CREATE TABLE referencecontributor (
1804
    referencecontributor_id int(11) NOT NULL,
1805
    reference_id int(11) NOT NULL,
1806
    referenceparty_id int(11) NOT NULL,
1807
    roletype text,
1808
    `position` int(11)
1809
);
1810

    
1811

    
1812
--
1813
-- Name: referencecontributor_referencecontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1814
--
1815

    
1816

    
1817

    
1818

    
1819
--
1820
-- Name: referencecontributor_referencecontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1821
--
1822

    
1823

    
1824

    
1825

    
1826
--
1827
-- Name: referencejournal; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1828
--
1829

    
1830
CREATE TABLE referencejournal (
1831
    referencejournal_id int(11) NOT NULL,
1832
    journal text NOT NULL,
1833
    issn text,
1834
    abbreviation text,
1835
    accessioncode text
1836
);
1837

    
1838

    
1839
--
1840
-- Name: referencejournal_referencejournal_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1841
--
1842

    
1843

    
1844

    
1845

    
1846
--
1847
-- Name: referencejournal_referencejournal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1848
--
1849

    
1850

    
1851

    
1852

    
1853
--
1854
-- Name: referenceparty; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1855
--
1856

    
1857
CREATE TABLE referenceparty (
1858
    referenceparty_id int(11) NOT NULL,
1859
    type text,
1860
    positionname text,
1861
    salutation text,
1862
    givenname text,
1863
    surname text,
1864
    suffix text,
1865
    organizationname text,
1866
    currentparty_id int(11),
1867
    accessioncode text
1868
);
1869

    
1870

    
1871
--
1872
-- Name: referenceparty_referenceparty_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1873
--
1874

    
1875

    
1876

    
1877

    
1878
--
1879
-- Name: referenceparty_referenceparty_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1880
--
1881

    
1882

    
1883

    
1884

    
1885
--
1886
-- Name: revision; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1887
--
1888

    
1889
CREATE TABLE revision (
1890
    revision_id int(11) NOT NULL,
1891
    tablename text NOT NULL,
1892
    tableattribute text NOT NULL,
1893
    tablerecord int(11) NOT NULL,
1894
    previousvaluetext text NOT NULL,
1895
    previousvaluetype text NOT NULL,
1896
    previousrevision_id int(11),
1897
    revisiondate timestamp NOT NULL
1898
);
1899

    
1900

    
1901
--
1902
-- Name: revision_revision_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1903
--
1904

    
1905

    
1906

    
1907

    
1908
--
1909
-- Name: revision_revision_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1910
--
1911

    
1912

    
1913

    
1914

    
1915
--
1916
-- Name: soilobs; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1917
--
1918

    
1919
CREATE TABLE soilobs (
1920
    soilobs_id int(11) NOT NULL,
1921
    locationevent_id int(11) NOT NULL,
1922
    horizon text DEFAULT 'unknown' NOT NULL,
1923
    description text,
1924
    depthtop double precision,
1925
    depthbottom double precision,
1926
    color text,
1927
    texture text,
1928
    organic double precision,
1929
    sand double precision,
1930
    silt double precision,
1931
    clay double precision,
1932
    coarse double precision,
1933
    ph double precision,
1934
    acidity double precision,
1935
    basesaturation double precision,
1936
    cationexchangecapacity double precision,
1937
    conductivity double precision,
1938
    carbon double precision,
1939
    phosphorus double precision,
1940
    potassium double precision,
1941
    magnesium double precision,
1942
    nitrogen double precision,
1943
    calcium double precision,
1944
    sodium double precision
1945
);
1946

    
1947

    
1948
--
1949
-- Name: COLUMN soilobs.organic; Type: COMMENT; Schema: public; Owner: -
1950
--
1951

    
1952

    
1953

    
1954

    
1955
--
1956
-- Name: COLUMN soilobs.sand; Type: COMMENT; Schema: public; Owner: -
1957
--
1958

    
1959

    
1960

    
1961

    
1962
--
1963
-- Name: COLUMN soilobs.silt; Type: COMMENT; Schema: public; Owner: -
1964
--
1965

    
1966

    
1967

    
1968

    
1969
--
1970
-- Name: COLUMN soilobs.clay; Type: COMMENT; Schema: public; Owner: -
1971
--
1972

    
1973

    
1974

    
1975

    
1976
--
1977
-- Name: COLUMN soilobs.coarse; Type: COMMENT; Schema: public; Owner: -
1978
--
1979

    
1980

    
1981

    
1982

    
1983
--
1984
-- Name: COLUMN soilobs.acidity; Type: COMMENT; Schema: public; Owner: -
1985
--
1986

    
1987

    
1988

    
1989

    
1990
--
1991
-- Name: COLUMN soilobs.basesaturation; Type: COMMENT; Schema: public; Owner: -
1992
--
1993

    
1994

    
1995

    
1996

    
1997
--
1998
-- Name: COLUMN soilobs.carbon; Type: COMMENT; Schema: public; Owner: -
1999
--
2000

    
2001

    
2002

    
2003

    
2004
--
2005
-- Name: COLUMN soilobs.phosphorus; Type: COMMENT; Schema: public; Owner: -
2006
--
2007

    
2008

    
2009

    
2010

    
2011
--
2012
-- Name: COLUMN soilobs.potassium; Type: COMMENT; Schema: public; Owner: -
2013
--
2014

    
2015

    
2016

    
2017

    
2018
--
2019
-- Name: COLUMN soilobs.magnesium; Type: COMMENT; Schema: public; Owner: -
2020
--
2021

    
2022

    
2023

    
2024

    
2025
--
2026
-- Name: COLUMN soilobs.nitrogen; Type: COMMENT; Schema: public; Owner: -
2027
--
2028

    
2029

    
2030

    
2031

    
2032
--
2033
-- Name: COLUMN soilobs.calcium; Type: COMMENT; Schema: public; Owner: -
2034
--
2035

    
2036

    
2037

    
2038

    
2039
--
2040
-- Name: COLUMN soilobs.sodium; Type: COMMENT; Schema: public; Owner: -
2041
--
2042

    
2043

    
2044

    
2045

    
2046
--
2047
-- Name: soilobs_soilobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2048
--
2049

    
2050

    
2051

    
2052

    
2053
--
2054
-- Name: soilobs_soilobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2055
--
2056

    
2057

    
2058

    
2059

    
2060
--
2061
-- Name: soiltaxon; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2062
--
2063

    
2064
CREATE TABLE soiltaxon (
2065
    soiltaxon_id int(11) NOT NULL,
2066
    soilcode text,
2067
    soilname text,
2068
    soillevel int(11),
2069
    soilparent_id int(11),
2070
    soilframework text,
2071
    accessioncode text
2072
);
2073

    
2074

    
2075
--
2076
-- Name: soiltaxon_soiltaxon_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2077
--
2078

    
2079

    
2080

    
2081

    
2082
--
2083
-- Name: soiltaxon_soiltaxon_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2084
--
2085

    
2086

    
2087

    
2088

    
2089

    
2090

    
2091
--
2092
-- Name: specimen; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2093
--
2094

    
2095
CREATE TABLE specimen (
2096
    specimen_id int(11) NOT NULL
2097
);
2098

    
2099

    
2100
--
2101
-- Name: TABLE specimen; Type: COMMENT; Schema: public; Owner: -
2102
--
2103

    
2104

    
2105

    
2106

    
2107
--
2108
-- Name: specimen_specimen_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2109
--
2110

    
2111

    
2112

    
2113

    
2114
--
2115
-- Name: specimen_specimen_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2116
--
2117

    
2118

    
2119

    
2120

    
2121

    
2122

    
2123
--
2124
-- Name: specimenreplicate; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2125
--
2126

    
2127
CREATE TABLE specimenreplicate (
2128
    specimenreplicate_id int(11) NOT NULL,
2129
    datasource_id int(11) NOT NULL,
2130
    sourceaccessioncode text,
2131
    plantobservation_id int(11),
2132
    institution_id int(11),
2133
    collectioncode_dwc text,
2134
    catalognumber_dwc text,
2135
    description text,
2136
    specimen_id int(11),
2137
    accessioncode text
2138
);
2139

    
2140

    
2141
--
2142
-- Name: TABLE specimenreplicate; Type: COMMENT; Schema: public; Owner: -
2143
--
2144

    
2145

    
2146

    
2147

    
2148
--
2149
-- Name: COLUMN specimenreplicate.institution_id; Type: COMMENT; Schema: public; Owner: -
2150
--
2151

    
2152

    
2153

    
2154

    
2155
--
2156
-- Name: COLUMN specimenreplicate.collectioncode_dwc; Type: COMMENT; Schema: public; Owner: -
2157
--
2158

    
2159

    
2160

    
2161

    
2162
--
2163
-- Name: specimenreplicate_specimenreplicate_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2164
--
2165

    
2166

    
2167

    
2168

    
2169
--
2170
-- Name: specimenreplicate_specimenreplicate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2171
--
2172

    
2173

    
2174

    
2175

    
2176
--
2177
-- Name: stemobservation; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2178
--
2179

    
2180
CREATE TABLE stemobservation (
2181
    stemobservation_id int(11) NOT NULL,
2182
    datasource_id int(11) NOT NULL,
2183
    sourceaccessioncode text,
2184
    plantobservation_id int(11) NOT NULL,
2185
    authorstemcode text,
2186
    xposition double precision,
2187
    yposition double precision,
2188
    diameterbreastheight double precision,
2189
    basaldiameter double precision,
2190
    diameteraccuracy double precision,
2191
    height double precision,
2192
    heightfirstbranch double precision,
2193
    heightaccuracy double precision,
2194
    health text,
2195
    age double precision,
2196
    accessioncode text
2197
);
2198

    
2199

    
2200
--
2201
-- Name: TABLE stemobservation; Type: COMMENT; Schema: public; Owner: -
2202
--
2203

    
2204

    
2205

    
2206

    
2207
--
2208
-- Name: stemobservation_stemobservation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2209
--
2210

    
2211

    
2212

    
2213

    
2214
--
2215
-- Name: stemobservation_stemobservation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2216
--
2217

    
2218

    
2219

    
2220

    
2221

    
2222

    
2223
--
2224
-- Name: stemtag; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2225
--
2226

    
2227
CREATE TABLE stemtag (
2228
    stemtag_id int(11) NOT NULL,
2229
    stemobservation_id int(11) NOT NULL,
2230
    tag text NOT NULL,
2231
    iscurrent int(1) DEFAULT true NOT NULL
2232
);
2233

    
2234

    
2235
--
2236
-- Name: stemtag_stemtag_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2237
--
2238

    
2239

    
2240

    
2241

    
2242
--
2243
-- Name: stemtag_stemtag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2244
--
2245

    
2246

    
2247

    
2248

    
2249

    
2250

    
2251
--
2252
-- Name: stratum; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2253
--
2254

    
2255
CREATE TABLE stratum (
2256
    stratum_id int(11) NOT NULL,
2257
    locationevent_id int(11) NOT NULL,
2258
    stratumheight double precision,
2259
    stratumbase double precision,
2260
    stratumcover double precision,
2261
    area double precision,
2262
    method_id int(11)
2263
);
2264

    
2265

    
2266
--
2267
-- Name: stratum_stratum_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2268
--
2269

    
2270

    
2271

    
2272

    
2273
--
2274
-- Name: stratum_stratum_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2275
--
2276

    
2277

    
2278

    
2279

    
2280
--
2281
-- Name: taxonalt; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2282
--
2283

    
2284
CREATE TABLE taxonalt (
2285
    taxonalt_id int(11) NOT NULL,
2286
    taxondetermination_id int(11) NOT NULL,
2287
    plantconcept_id int(11) NOT NULL,
2288
    taxonaltfit text,
2289
    taxonaltconfidence text,
2290
    taxonaltnotes text
2291
);
2292

    
2293

    
2294
--
2295
-- Name: taxonalt_taxonalt_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2296
--
2297

    
2298

    
2299

    
2300

    
2301
--
2302
-- Name: taxonalt_taxonalt_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2303
--
2304

    
2305

    
2306

    
2307

    
2308
--
2309
-- Name: taxondetermination; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2310
--
2311

    
2312
CREATE TABLE taxondetermination (
2313
    taxondetermination_id int(11) NOT NULL,
2314
    taxonoccurrence_id int(11) NOT NULL,
2315
    plantconcept_id int(11) NOT NULL,
2316
    party_id int(11),
2317
    role text NOT NULL,
2318
    determinationtype text,
2319
    reference_id int(11),
2320
    isoriginal int(1) DEFAULT false NOT NULL,
2321
    iscurrent int(1) DEFAULT false NOT NULL,
2322
    taxonfit text,
2323
    taxonconfidence text,
2324
    grouptype text,
2325
    notes text,
2326
    notespublic int(1),
2327
    notesmgt int(1),
2328
    revisions int(1),
2329
    determinationdate timestamp NULL,
2330
    accessioncode text
2331
);
2332

    
2333

    
2334
--
2335
-- Name: TABLE taxondetermination; Type: COMMENT; Schema: public; Owner: -
2336
--
2337

    
2338

    
2339

    
2340

    
2341
--
2342
-- Name: taxondetermination_taxondetermination_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2343
--
2344

    
2345

    
2346

    
2347

    
2348
--
2349
-- Name: taxondetermination_taxondetermination_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2350
--
2351

    
2352

    
2353

    
2354

    
2355

    
2356

    
2357
--
2358
-- Name: taxonoccurrence; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2359
--
2360

    
2361
CREATE TABLE taxonoccurrence (
2362
    taxonoccurrence_id int(11) NOT NULL,
2363
    datasource_id int(11) NOT NULL,
2364
    sourceaccessioncode text,
2365
    locationevent_id int(11),
2366
    authortaxoncode text,
2367
    verbatimcollectorname text,
2368
    growthform text,
2369
    iscultivated int(1),
2370
    cultivatedbasis text,
2371
    isnative int(1),
2372
    accessioncode text
2373
);
2374

    
2375

    
2376
--
2377
-- Name: TABLE taxonoccurrence; Type: COMMENT; Schema: public; Owner: -
2378
--
2379

    
2380

    
2381

    
2382

    
2383
--
2384
-- Name: COLUMN taxonoccurrence.iscultivated; Type: COMMENT; Schema: public; Owner: -
2385
--
2386

    
2387

    
2388

    
2389

    
2390
--
2391
-- Name: COLUMN taxonoccurrence.cultivatedbasis; Type: COMMENT; Schema: public; Owner: -
2392
--
2393

    
2394

    
2395

    
2396

    
2397
--
2398
-- Name: COLUMN taxonoccurrence.isnative; Type: COMMENT; Schema: public; Owner: -
2399
--
2400

    
2401

    
2402

    
2403

    
2404
--
2405
-- Name: taxonoccurrence_taxonoccurrence_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2406
--
2407

    
2408

    
2409

    
2410

    
2411
--
2412
-- Name: taxonoccurrence_taxonoccurrence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2413
--
2414

    
2415

    
2416

    
2417

    
2418

    
2419

    
2420
--
2421
-- Name: telephone; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2422
--
2423

    
2424
CREATE TABLE telephone (
2425
    telephone_id int(11) NOT NULL,
2426
    party_id int(11) NOT NULL,
2427
    phonenumber text NOT NULL,
2428
    phonetype text NOT NULL
2429
);
2430

    
2431

    
2432
--
2433
-- Name: telephone_telephone_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2434
--
2435

    
2436

    
2437

    
2438

    
2439
--
2440
-- Name: telephone_telephone_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2441
--
2442

    
2443

    
2444

    
2445

    
2446

    
2447

    
2448
--
2449
-- Name: trait; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2450
--
2451

    
2452
CREATE TABLE trait (
2453
    trait_id int(11) NOT NULL,
2454
    stemobservation_id int(11) NOT NULL,
2455
    type text NOT NULL,
2456
    value text
2457
);
2458

    
2459

    
2460
--
2461
-- Name: trait_trait_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2462
--
2463

    
2464

    
2465

    
2466

    
2467
--
2468
-- Name: trait_trait_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2469
--
2470

    
2471

    
2472

    
2473

    
2474

    
2475

    
2476
--
2477
-- Name: userdefined; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2478
--
2479

    
2480
CREATE TABLE userdefined (
2481
    userdefined_id int(11) NOT NULL,
2482
    userdefinedname text NOT NULL,
2483
    userdefinedmetadata text,
2484
    userdefinedcategory text,
2485
    userdefinedtype text DEFAULT 'text' NOT NULL,
2486
    tablename text NOT NULL,
2487
    accessioncode text
2488
);
2489

    
2490

    
2491
--
2492
-- Name: userdefined_userdefined_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2493
--
2494

    
2495

    
2496

    
2497

    
2498
--
2499
-- Name: userdefined_userdefined_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2500
--
2501

    
2502

    
2503

    
2504

    
2505

    
2506

    
2507
--
2508
-- Name: voucher; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2509
--
2510

    
2511
CREATE TABLE voucher (
2512
    voucher_id int(11) NOT NULL,
2513
    taxonoccurrence_id int(11) NOT NULL,
2514
    specimenreplicate_id int(11) NOT NULL,
2515
    accessioncode text
2516
);
2517

    
2518

    
2519
--
2520
-- Name: voucher_voucher_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2521
--
2522

    
2523

    
2524

    
2525

    
2526
--
2527
-- Name: voucher_voucher_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2528
--
2529

    
2530

    
2531

    
2532

    
2533
--
2534
-- Name: address_id; Type: DEFAULT; Schema: public; Owner: -
2535
--
2536

    
2537

    
2538

    
2539

    
2540
--
2541
-- Name: aggregateoccurrence_id; Type: DEFAULT; Schema: public; Owner: -
2542
--
2543

    
2544

    
2545

    
2546

    
2547
--
2548
-- Name: classcontributor_id; Type: DEFAULT; Schema: public; Owner: -
2549
--
2550

    
2551

    
2552

    
2553

    
2554
--
2555
-- Name: commclass_id; Type: DEFAULT; Schema: public; Owner: -
2556
--
2557

    
2558

    
2559

    
2560

    
2561
--
2562
-- Name: commconcept_id; Type: DEFAULT; Schema: public; Owner: -
2563
--
2564

    
2565

    
2566

    
2567

    
2568
--
2569
-- Name: commcorrelation_id; Type: DEFAULT; Schema: public; Owner: -
2570
--
2571

    
2572

    
2573

    
2574

    
2575
--
2576
-- Name: commdetermination_id; Type: DEFAULT; Schema: public; Owner: -
2577
--
2578

    
2579

    
2580

    
2581

    
2582
--
2583
-- Name: commlineage_id; Type: DEFAULT; Schema: public; Owner: -
2584
--
2585

    
2586

    
2587

    
2588

    
2589
--
2590
-- Name: commname_id; Type: DEFAULT; Schema: public; Owner: -
2591
--
2592

    
2593

    
2594

    
2595

    
2596
--
2597
-- Name: commstatus_id; Type: DEFAULT; Schema: public; Owner: -
2598
--
2599

    
2600

    
2601

    
2602

    
2603
--
2604
-- Name: commusage_id; Type: DEFAULT; Schema: public; Owner: -
2605
--
2606

    
2607

    
2608

    
2609

    
2610
--
2611
-- Name: coverindex_id; Type: DEFAULT; Schema: public; Owner: -
2612
--
2613

    
2614

    
2615

    
2616

    
2617
--
2618
-- Name: covermethod_id; Type: DEFAULT; Schema: public; Owner: -
2619
--
2620

    
2621

    
2622

    
2623

    
2624
--
2625
-- Name: definedvalue_id; Type: DEFAULT; Schema: public; Owner: -
2626
--
2627

    
2628

    
2629

    
2630

    
2631
--
2632
-- Name: disturbanceobs_id; Type: DEFAULT; Schema: public; Owner: -
2633
--
2634

    
2635

    
2636

    
2637

    
2638
--
2639
-- Name: graphic_id; Type: DEFAULT; Schema: public; Owner: -
2640
--
2641

    
2642

    
2643

    
2644

    
2645
--
2646
-- Name: location_id; Type: DEFAULT; Schema: public; Owner: -
2647
--
2648

    
2649

    
2650

    
2651

    
2652
--
2653
-- Name: locationdetermination_id; Type: DEFAULT; Schema: public; Owner: -
2654
--
2655

    
2656

    
2657

    
2658

    
2659
--
2660
-- Name: locationevent_id; Type: DEFAULT; Schema: public; Owner: -
2661
--
2662

    
2663

    
2664

    
2665

    
2666
--
2667
-- Name: locationeventcontributor_id; Type: DEFAULT; Schema: public; Owner: -
2668
--
2669

    
2670

    
2671

    
2672

    
2673
--
2674
-- Name: locationeventsynonym_id; Type: DEFAULT; Schema: public; Owner: -
2675
--
2676

    
2677

    
2678

    
2679

    
2680
--
2681
-- Name: method_id; Type: DEFAULT; Schema: public; Owner: -
2682
--
2683

    
2684

    
2685

    
2686

    
2687
--
2688
-- Name: methodtaxonclass_id; Type: DEFAULT; Schema: public; Owner: -
2689
--
2690

    
2691

    
2692

    
2693

    
2694
--
2695
-- Name: namedplace_id; Type: DEFAULT; Schema: public; Owner: -
2696
--
2697

    
2698

    
2699

    
2700

    
2701
--
2702
-- Name: namedplacecorrelation_id; Type: DEFAULT; Schema: public; Owner: -
2703
--
2704

    
2705

    
2706

    
2707

    
2708
--
2709
-- Name: note_id; Type: DEFAULT; Schema: public; Owner: -
2710
--
2711

    
2712

    
2713

    
2714

    
2715
--
2716
-- Name: notelink_id; Type: DEFAULT; Schema: public; Owner: -
2717
--
2718

    
2719

    
2720

    
2721

    
2722
--
2723
-- Name: party_id; Type: DEFAULT; Schema: public; Owner: -
2724
--
2725

    
2726

    
2727

    
2728

    
2729
--
2730
-- Name: partymember_id; Type: DEFAULT; Schema: public; Owner: -
2731
--
2732

    
2733

    
2734

    
2735

    
2736
--
2737
-- Name: plant_id; Type: DEFAULT; Schema: public; Owner: -
2738
--
2739

    
2740

    
2741

    
2742

    
2743
--
2744
-- Name: plantconcept_id; Type: DEFAULT; Schema: public; Owner: -
2745
--
2746

    
2747

    
2748

    
2749

    
2750
--
2751
-- Name: plantcorrelation_id; Type: DEFAULT; Schema: public; Owner: -
2752
--
2753

    
2754

    
2755

    
2756

    
2757
--
2758
-- Name: plantlineage_id; Type: DEFAULT; Schema: public; Owner: -
2759
--
2760

    
2761

    
2762

    
2763

    
2764
--
2765
-- Name: plantname_id; Type: DEFAULT; Schema: public; Owner: -
2766
--
2767

    
2768

    
2769

    
2770

    
2771
--
2772
-- Name: plantnamescope_id; Type: DEFAULT; Schema: public; Owner: -
2773
--
2774

    
2775

    
2776

    
2777

    
2778
--
2779
-- Name: plantobservation_id; Type: DEFAULT; Schema: public; Owner: -
2780
--
2781

    
2782

    
2783

    
2784

    
2785
--
2786
-- Name: plantstatus_id; Type: DEFAULT; Schema: public; Owner: -
2787
--
2788

    
2789

    
2790

    
2791

    
2792
--
2793
-- Name: plantusage_id; Type: DEFAULT; Schema: public; Owner: -
2794
--
2795

    
2796

    
2797

    
2798

    
2799
--
2800
-- Name: project_id; Type: DEFAULT; Schema: public; Owner: -
2801
--
2802

    
2803

    
2804

    
2805

    
2806
--
2807
-- Name: projectcontributor_id; Type: DEFAULT; Schema: public; Owner: -
2808
--
2809

    
2810

    
2811

    
2812

    
2813
--
2814
-- Name: reference_id; Type: DEFAULT; Schema: public; Owner: -
2815
--
2816

    
2817

    
2818

    
2819

    
2820
--
2821
-- Name: referencealtident_id; Type: DEFAULT; Schema: public; Owner: -
2822
--
2823

    
2824

    
2825

    
2826

    
2827
--
2828
-- Name: referencecontributor_id; Type: DEFAULT; Schema: public; Owner: -
2829
--
2830

    
2831

    
2832

    
2833

    
2834
--
2835
-- Name: referencejournal_id; Type: DEFAULT; Schema: public; Owner: -
2836
--
2837

    
2838

    
2839

    
2840

    
2841
--
2842
-- Name: referenceparty_id; Type: DEFAULT; Schema: public; Owner: -
2843
--
2844

    
2845

    
2846

    
2847

    
2848
--
2849
-- Name: revision_id; Type: DEFAULT; Schema: public; Owner: -
2850
--
2851

    
2852

    
2853

    
2854

    
2855
--
2856
-- Name: soilobs_id; Type: DEFAULT; Schema: public; Owner: -
2857
--
2858

    
2859

    
2860

    
2861

    
2862
--
2863
-- Name: soiltaxon_id; Type: DEFAULT; Schema: public; Owner: -
2864
--
2865

    
2866

    
2867

    
2868

    
2869
--
2870
-- Name: specimen_id; Type: DEFAULT; Schema: public; Owner: -
2871
--
2872

    
2873

    
2874

    
2875

    
2876
--
2877
-- Name: specimenreplicate_id; Type: DEFAULT; Schema: public; Owner: -
2878
--
2879

    
2880

    
2881

    
2882

    
2883
--
2884
-- Name: stemobservation_id; Type: DEFAULT; Schema: public; Owner: -
2885
--
2886

    
2887

    
2888

    
2889

    
2890
--
2891
-- Name: stemtag_id; Type: DEFAULT; Schema: public; Owner: -
2892
--
2893

    
2894

    
2895

    
2896

    
2897
--
2898
-- Name: stratum_id; Type: DEFAULT; Schema: public; Owner: -
2899
--
2900

    
2901

    
2902

    
2903

    
2904
--
2905
-- Name: taxonalt_id; Type: DEFAULT; Schema: public; Owner: -
2906
--
2907

    
2908

    
2909

    
2910

    
2911
--
2912
-- Name: taxondetermination_id; Type: DEFAULT; Schema: public; Owner: -
2913
--
2914

    
2915

    
2916

    
2917

    
2918
--
2919
-- Name: taxonoccurrence_id; Type: DEFAULT; Schema: public; Owner: -
2920
--
2921

    
2922

    
2923

    
2924

    
2925
--
2926
-- Name: telephone_id; Type: DEFAULT; Schema: public; Owner: -
2927
--
2928

    
2929

    
2930

    
2931

    
2932
--
2933
-- Name: trait_id; Type: DEFAULT; Schema: public; Owner: -
2934
--
2935

    
2936

    
2937

    
2938

    
2939
--
2940
-- Name: userdefined_id; Type: DEFAULT; Schema: public; Owner: -
2941
--
2942

    
2943

    
2944

    
2945

    
2946
--
2947
-- Name: voucher_id; Type: DEFAULT; Schema: public; Owner: -
2948
--
2949

    
2950

    
2951

    
2952

    
2953
--
2954
-- Name: address_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2955
--
2956

    
2957
ALTER TABLE address
2958
    ADD CONSTRAINT address_pkey PRIMARY KEY (address_id);
2959

    
2960

    
2961
--
2962
-- Name: aggregateoccurrence_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2963
--
2964

    
2965
ALTER TABLE aggregateoccurrence
2966
    ADD CONSTRAINT aggregateoccurrence_pkey PRIMARY KEY (aggregateoccurrence_id);
2967

    
2968

    
2969
--
2970
-- Name: classcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2971
--
2972

    
2973
ALTER TABLE classcontributor
2974
    ADD CONSTRAINT classcontributor_pkey PRIMARY KEY (classcontributor_id);
2975

    
2976

    
2977
--
2978
-- Name: commclass_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2979
--
2980

    
2981
ALTER TABLE commclass
2982
    ADD CONSTRAINT commclass_pkey PRIMARY KEY (commclass_id);
2983

    
2984

    
2985
--
2986
-- Name: commconcept_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2987
--
2988

    
2989
ALTER TABLE commconcept
2990
    ADD CONSTRAINT commconcept_pkey PRIMARY KEY (commconcept_id);
2991

    
2992

    
2993
--
2994
-- Name: commconcept_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2995
--
2996

    
2997
ALTER TABLE commconcept
2998
    ADD CONSTRAINT commconcept_unique UNIQUE (commname_id);
2999

    
3000

    
3001
--
3002
-- Name: commcorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3003
--
3004

    
3005
ALTER TABLE commcorrelation
3006
    ADD CONSTRAINT commcorrelation_pkey PRIMARY KEY (commcorrelation_id);
3007

    
3008

    
3009
--
3010
-- Name: commdetermination_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3011
--
3012

    
3013
ALTER TABLE commdetermination
3014
    ADD CONSTRAINT commdetermination_pkey PRIMARY KEY (commdetermination_id);
3015

    
3016

    
3017
--
3018
-- Name: commdetermination_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3019
--
3020

    
3021
ALTER TABLE commdetermination
3022
    ADD CONSTRAINT commdetermination_unique UNIQUE (commclass_id, commconcept_id);
3023

    
3024

    
3025
--
3026
-- Name: commlineage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3027
--
3028

    
3029
ALTER TABLE commlineage
3030
    ADD CONSTRAINT commlineage_pkey PRIMARY KEY (commlineage_id);
3031

    
3032

    
3033
--
3034
-- Name: commname_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3035
--
3036

    
3037
ALTER TABLE commname
3038
    ADD CONSTRAINT commname_pkey PRIMARY KEY (commname_id);
3039

    
3040

    
3041
--
3042
-- Name: commname_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3043
--
3044

    
3045
ALTER TABLE commname
3046
    ADD CONSTRAINT commname_unique UNIQUE (commname);
3047

    
3048

    
3049
--
3050
-- Name: commstatus_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3051
--
3052

    
3053
ALTER TABLE commstatus
3054
    ADD CONSTRAINT commstatus_pkey PRIMARY KEY (commstatus_id);
3055

    
3056

    
3057
--
3058
-- Name: commusage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3059
--
3060

    
3061
ALTER TABLE commusage
3062
    ADD CONSTRAINT commusage_pkey PRIMARY KEY (commusage_id);
3063

    
3064

    
3065
--
3066
-- Name: coverindex_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3067
--
3068

    
3069
ALTER TABLE coverindex
3070
    ADD CONSTRAINT coverindex_pkey PRIMARY KEY (coverindex_id);
3071

    
3072

    
3073
--
3074
-- Name: covermethod_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3075
--
3076

    
3077
ALTER TABLE covermethod
3078
    ADD CONSTRAINT covermethod_pkey PRIMARY KEY (covermethod_id);
3079

    
3080

    
3081
--
3082
-- Name: definedvalue_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3083
--
3084

    
3085
ALTER TABLE definedvalue
3086
    ADD CONSTRAINT definedvalue_pkey PRIMARY KEY (definedvalue_id);
3087

    
3088

    
3089
--
3090
-- Name: definedvalue_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3091
--
3092

    
3093
ALTER TABLE definedvalue
3094
    ADD CONSTRAINT definedvalue_unique UNIQUE (userdefined_id, tablerecord_id);
3095

    
3096

    
3097
--
3098
-- Name: disturbanceobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3099
--
3100

    
3101
ALTER TABLE disturbanceobs
3102
    ADD CONSTRAINT disturbanceobs_pkey PRIMARY KEY (disturbanceobs_id);
3103

    
3104

    
3105
--
3106
-- Name: graphic_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3107
--
3108

    
3109
ALTER TABLE graphic
3110
    ADD CONSTRAINT graphic_pkey PRIMARY KEY (graphic_id);
3111

    
3112

    
3113
--
3114
-- Name: location_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3115
--
3116

    
3117
ALTER TABLE location
3118
    ADD CONSTRAINT location_pkey PRIMARY KEY (location_id);
3119

    
3120

    
3121
--
3122
-- Name: locationdetermination_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3123
--
3124

    
3125
ALTER TABLE locationdetermination
3126
    ADD CONSTRAINT locationdetermination_pkey PRIMARY KEY (locationdetermination_id);
3127

    
3128

    
3129
--
3130
-- Name: locationdetermination_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3131
--
3132

    
3133
ALTER TABLE locationdetermination
3134
    ADD CONSTRAINT locationdetermination_unique UNIQUE (location_id, namedplace_id);
3135

    
3136

    
3137
--
3138
-- Name: locationevent_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3139
--
3140

    
3141
ALTER TABLE locationevent
3142
    ADD CONSTRAINT locationevent_pkey PRIMARY KEY (locationevent_id);
3143

    
3144

    
3145
--
3146
-- Name: locationeventcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3147
--
3148

    
3149
ALTER TABLE locationeventcontributor
3150
    ADD CONSTRAINT locationeventcontributor_pkey PRIMARY KEY (locationeventcontributor_id);
3151

    
3152

    
3153
--
3154
-- Name: locationeventsynonym_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3155
--
3156

    
3157
ALTER TABLE locationeventsynonym
3158
    ADD CONSTRAINT locationeventsynonym_pkey PRIMARY KEY (locationeventsynonym_id);
3159

    
3160

    
3161
--
3162
-- Name: method_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3163
--
3164

    
3165
ALTER TABLE method
3166
    ADD CONSTRAINT method_pkey PRIMARY KEY (method_id);
3167

    
3168

    
3169
--
3170
-- Name: methodtaxonclass_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3171
--
3172

    
3173
ALTER TABLE methodtaxonclass
3174
    ADD CONSTRAINT methodtaxonclass_pkey PRIMARY KEY (methodtaxonclass_id);
3175

    
3176

    
3177
--
3178
-- Name: methodtaxonclass_unique_description; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3179
--
3180

    
3181
ALTER TABLE methodtaxonclass
3182
    ADD CONSTRAINT methodtaxonclass_unique_description UNIQUE (method_id, taxonclass);
3183

    
3184

    
3185
--
3186
-- Name: methodtaxonclass_unique_plantconcept_id; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3187
--
3188

    
3189
ALTER TABLE methodtaxonclass
3190
    ADD CONSTRAINT methodtaxonclass_unique_plantconcept_id UNIQUE (method_id, plantconcept_id);
3191

    
3192

    
3193
--
3194
-- Name: namedplace_ancestor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3195
--
3196

    
3197
ALTER TABLE namedplace_ancestor
3198
    ADD CONSTRAINT namedplace_ancestor_pkey PRIMARY KEY (namedplace_id, ancestor_id);
3199

    
3200

    
3201
--
3202
-- Name: namedplace_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3203
--
3204

    
3205
ALTER TABLE namedplace
3206
    ADD CONSTRAINT namedplace_pkey PRIMARY KEY (namedplace_id);
3207

    
3208

    
3209
--
3210
-- Name: namedplacecorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3211
--
3212

    
3213
ALTER TABLE namedplacecorrelation
3214
    ADD CONSTRAINT namedplacecorrelation_pkey PRIMARY KEY (namedplacecorrelation_id);
3215

    
3216

    
3217
--
3218
-- Name: note_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3219
--
3220

    
3221
ALTER TABLE note
3222
    ADD CONSTRAINT note_pkey PRIMARY KEY (note_id);
3223

    
3224

    
3225
--
3226
-- Name: notelink_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3227
--
3228

    
3229
ALTER TABLE notelink
3230
    ADD CONSTRAINT notelink_pkey PRIMARY KEY (notelink_id);
3231

    
3232

    
3233
--
3234
-- Name: party_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3235
--
3236

    
3237
ALTER TABLE party
3238
    ADD CONSTRAINT party_pkey PRIMARY KEY (party_id);
3239

    
3240

    
3241
--
3242
-- Name: partymember_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3243
--
3244

    
3245
ALTER TABLE partymember
3246
    ADD CONSTRAINT partymember_pkey PRIMARY KEY (partymember_id);
3247

    
3248

    
3249
--
3250
-- Name: plant_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3251
--
3252

    
3253
ALTER TABLE plant
3254
    ADD CONSTRAINT plant_pkey PRIMARY KEY (plant_id);
3255

    
3256

    
3257
--
3258
-- Name: plantconcept_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3259
--
3260

    
3261
ALTER TABLE plantconcept
3262
    ADD CONSTRAINT plantconcept_pkey PRIMARY KEY (plantconcept_id);
3263

    
3264

    
3265
--
3266
-- Name: plantconcept_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3267
--
3268

    
3269
ALTER TABLE plantconcept
3270
    ADD CONSTRAINT plantconcept_unique UNIQUE (plantname_id);
3271

    
3272

    
3273
--
3274
-- Name: plantcorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3275
--
3276

    
3277
ALTER TABLE plantcorrelation
3278
    ADD CONSTRAINT plantcorrelation_pkey PRIMARY KEY (plantcorrelation_id);
3279

    
3280

    
3281
--
3282
-- Name: plantlineage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3283
--
3284

    
3285
ALTER TABLE plantlineage
3286
    ADD CONSTRAINT plantlineage_pkey PRIMARY KEY (plantlineage_id);
3287

    
3288

    
3289
--
3290
-- Name: plantname_ancestor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3291
--
3292

    
3293
ALTER TABLE plantname_ancestor
3294
    ADD CONSTRAINT plantname_ancestor_pkey PRIMARY KEY (plantname_id, ancestor_id);
3295

    
3296

    
3297
--
3298
-- Name: plantname_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3299
--
3300

    
3301
ALTER TABLE plantname
3302
    ADD CONSTRAINT plantname_pkey PRIMARY KEY (plantname_id);
3303

    
3304

    
3305
--
3306
-- Name: plantnamescope_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3307
--
3308

    
3309
ALTER TABLE plantnamescope
3310
    ADD CONSTRAINT plantnamescope_pkey PRIMARY KEY (plantnamescope_id);
3311

    
3312

    
3313
--
3314
-- Name: plantobservation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3315
--
3316

    
3317
ALTER TABLE plantobservation
3318
    ADD CONSTRAINT plantobservation_pkey PRIMARY KEY (plantobservation_id);
3319

    
3320

    
3321
--
3322
-- Name: plantstatus_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3323
--
3324

    
3325
ALTER TABLE plantstatus
3326
    ADD CONSTRAINT plantstatus_pkey PRIMARY KEY (plantstatus_id);
3327

    
3328

    
3329
--
3330
-- Name: plantstatus_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3331
--
3332

    
3333
ALTER TABLE plantstatus
3334
    ADD CONSTRAINT plantstatus_unique UNIQUE (plantconcept_id, party_id);
3335

    
3336

    
3337
--
3338
-- Name: plantusage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3339
--
3340

    
3341
ALTER TABLE plantusage
3342
    ADD CONSTRAINT plantusage_pkey PRIMARY KEY (plantusage_id);
3343

    
3344

    
3345
--
3346
-- Name: project_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3347
--
3348

    
3349
ALTER TABLE project
3350
    ADD CONSTRAINT project_pkey PRIMARY KEY (project_id);
3351

    
3352

    
3353
--
3354
-- Name: project_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3355
--
3356

    
3357
ALTER TABLE project
3358
    ADD CONSTRAINT project_unique UNIQUE (datasource_id, projectname);
3359

    
3360

    
3361
--
3362
-- Name: projectcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3363
--
3364

    
3365
ALTER TABLE projectcontributor
3366
    ADD CONSTRAINT projectcontributor_pkey PRIMARY KEY (projectcontributor_id);
3367

    
3368

    
3369
--
3370
-- Name: reference_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3371
--
3372

    
3373
ALTER TABLE reference
3374
    ADD CONSTRAINT reference_pkey PRIMARY KEY (reference_id);
3375

    
3376

    
3377
--
3378
-- Name: referencealtident_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3379
--
3380

    
3381
ALTER TABLE referencealtident
3382
    ADD CONSTRAINT referencealtident_pkey PRIMARY KEY (referencealtident_id);
3383

    
3384

    
3385
--
3386
-- Name: referencecontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3387
--
3388

    
3389
ALTER TABLE referencecontributor
3390
    ADD CONSTRAINT referencecontributor_pkey PRIMARY KEY (referencecontributor_id);
3391

    
3392

    
3393
--
3394
-- Name: referencejournal_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3395
--
3396

    
3397
ALTER TABLE referencejournal
3398
    ADD CONSTRAINT referencejournal_pkey PRIMARY KEY (referencejournal_id);
3399

    
3400

    
3401
--
3402
-- Name: referenceparty_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3403
--
3404

    
3405
ALTER TABLE referenceparty
3406
    ADD CONSTRAINT referenceparty_pkey PRIMARY KEY (referenceparty_id);
3407

    
3408

    
3409
--
3410
-- Name: revision_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3411
--
3412

    
3413
ALTER TABLE revision
3414
    ADD CONSTRAINT revision_pkey PRIMARY KEY (revision_id);
3415

    
3416

    
3417
--
3418
-- Name: soilobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3419
--
3420

    
3421
ALTER TABLE soilobs
3422
    ADD CONSTRAINT soilobs_pkey PRIMARY KEY (soilobs_id);
3423

    
3424

    
3425
--
3426
-- Name: soilobs_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3427
--
3428

    
3429
ALTER TABLE soilobs
3430
    ADD CONSTRAINT soilobs_unique UNIQUE (locationevent_id);
3431

    
3432

    
3433
--
3434
-- Name: soiltaxon_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3435
--
3436

    
3437
ALTER TABLE soiltaxon
3438
    ADD CONSTRAINT soiltaxon_pkey PRIMARY KEY (soiltaxon_id);
3439

    
3440

    
3441
--
3442
-- Name: specimen_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3443
--
3444

    
3445
ALTER TABLE specimen
3446
    ADD CONSTRAINT specimen_pkey PRIMARY KEY (specimen_id);
3447

    
3448

    
3449
--
3450
-- Name: specimenreplicate_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3451
--
3452

    
3453
ALTER TABLE specimenreplicate
3454
    ADD CONSTRAINT specimenreplicate_pkey PRIMARY KEY (specimenreplicate_id);
3455

    
3456

    
3457
--
3458
-- Name: stemobservation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3459
--
3460

    
3461
ALTER TABLE stemobservation
3462
    ADD CONSTRAINT stemobservation_pkey PRIMARY KEY (stemobservation_id);
3463

    
3464

    
3465
--
3466
-- Name: stemtag_current_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3467
--
3468

    
3469
ALTER TABLE stemtag
3470
    ADD CONSTRAINT stemtag_current_unique UNIQUE (stemobservation_id, iscurrent);
3471

    
3472

    
3473
--
3474
-- Name: stemtag_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3475
--
3476

    
3477
ALTER TABLE stemtag
3478
    ADD CONSTRAINT stemtag_pkey PRIMARY KEY (stemtag_id);
3479

    
3480

    
3481
--
3482
-- Name: stemtag_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3483
--
3484

    
3485
ALTER TABLE stemtag
3486
    ADD CONSTRAINT stemtag_unique UNIQUE (stemobservation_id, tag);
3487

    
3488

    
3489
--
3490
-- Name: stratum_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3491
--
3492

    
3493
ALTER TABLE stratum
3494
    ADD CONSTRAINT stratum_pkey PRIMARY KEY (stratum_id);
3495

    
3496

    
3497
--
3498
-- Name: taxonalt_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3499
--
3500

    
3501
ALTER TABLE taxonalt
3502
    ADD CONSTRAINT taxonalt_pkey PRIMARY KEY (taxonalt_id);
3503

    
3504

    
3505
--
3506
-- Name: taxondetermination_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3507
--
3508

    
3509
ALTER TABLE taxondetermination
3510
    ADD CONSTRAINT taxondetermination_pkey PRIMARY KEY (taxondetermination_id);
3511

    
3512

    
3513
--
3514
-- Name: taxonoccurrence_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3515
--
3516

    
3517
ALTER TABLE taxonoccurrence
3518
    ADD CONSTRAINT taxonoccurrence_pkey PRIMARY KEY (taxonoccurrence_id);
3519

    
3520

    
3521
--
3522
-- Name: telephone_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3523
--
3524

    
3525
ALTER TABLE telephone
3526
    ADD CONSTRAINT telephone_pkey PRIMARY KEY (telephone_id);
3527

    
3528

    
3529
--
3530
-- Name: trait_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3531
--
3532

    
3533
ALTER TABLE trait
3534
    ADD CONSTRAINT trait_pkey PRIMARY KEY (trait_id);
3535

    
3536

    
3537
--
3538
-- Name: userdefined_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3539
--
3540

    
3541
ALTER TABLE userdefined
3542
    ADD CONSTRAINT userdefined_pkey PRIMARY KEY (userdefined_id);
3543

    
3544

    
3545
--
3546
-- Name: userdefined_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3547
--
3548

    
3549
ALTER TABLE userdefined
3550
    ADD CONSTRAINT userdefined_unique UNIQUE (tablename, userdefinedname);
3551

    
3552

    
3553
--
3554
-- Name: voucher_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3555
--
3556

    
3557
ALTER TABLE voucher
3558
    ADD CONSTRAINT voucher_pkey PRIMARY KEY (voucher_id);
3559

    
3560

    
3561
--
3562
-- Name: voucher_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3563
--
3564

    
3565
ALTER TABLE voucher
3566
    ADD CONSTRAINT voucher_unique UNIQUE (taxonoccurrence_id, specimenreplicate_id);
3567

    
3568

    
3569
--
3570
-- Name: aggregateoccurrence_taxonoccurrence_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3571
--
3572

    
3573

    
3574

    
3575

    
3576
--
3577
-- Name: aggregateoccurrence_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3578
--
3579

    
3580

    
3581

    
3582

    
3583
--
3584
-- Name: commclass_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3585
--
3586

    
3587
CREATE UNIQUE INDEX commclass_accessioncode_index ON commclass  (accessioncode);
3588

    
3589

    
3590
--
3591
-- Name: commclass_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3592
--
3593

    
3594

    
3595

    
3596

    
3597
--
3598
-- Name: commconcept_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3599
--
3600

    
3601
CREATE UNIQUE INDEX commconcept_accessioncode_index ON commconcept  (accessioncode);
3602

    
3603

    
3604
--
3605
-- Name: commstatus_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3606
--
3607

    
3608
CREATE UNIQUE INDEX commstatus_accessioncode_index ON commstatus  (accessioncode);
3609

    
3610

    
3611
--
3612
-- Name: covermethod_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3613
--
3614

    
3615
CREATE UNIQUE INDEX covermethod_accessioncode_index ON covermethod  (accessioncode);
3616

    
3617

    
3618
--
3619
-- Name: graphic_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3620
--
3621

    
3622
CREATE UNIQUE INDEX graphic_accessioncode_index ON graphic  (accessioncode);
3623

    
3624

    
3625
--
3626
-- Name: location_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3627
--
3628

    
3629
CREATE UNIQUE INDEX location_accessioncode_index ON location  (accessioncode);
3630

    
3631

    
3632
--
3633
-- Name: location_unique_within_datasource_by_authorlocationcode; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3634
--
3635

    
3636

    
3637

    
3638

    
3639
--
3640
-- Name: location_unique_within_datasource_by_sourceaccessioncode; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3641
--
3642

    
3643

    
3644

    
3645

    
3646
--
3647
-- Name: location_unique_within_parent; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3648
--
3649

    
3650

    
3651

    
3652

    
3653
--
3654
-- Name: locationevent_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3655
--
3656

    
3657
CREATE UNIQUE INDEX locationevent_accessioncode_index ON locationevent  (accessioncode);
3658

    
3659

    
3660
--
3661
-- Name: locationevent_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3662
--
3663

    
3664

    
3665

    
3666

    
3667
--
3668
-- Name: locationevent_unique_within_location; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3669
--
3670

    
3671

    
3672

    
3673

    
3674
--
3675
-- Name: locationevent_unique_within_parent_by_authoreventcode; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3676
--
3677

    
3678

    
3679

    
3680

    
3681
--
3682
-- Name: locationevent_unique_within_parent_by_location; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3683
--
3684

    
3685

    
3686

    
3687

    
3688
--
3689
-- Name: locationevent_unique_within_project; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3690
--
3691

    
3692

    
3693

    
3694

    
3695
--
3696
-- Name: locationeventsynonym_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3697
--
3698

    
3699
CREATE UNIQUE INDEX locationeventsynonym_accessioncode_index ON locationeventsynonym  (accessioncode);
3700

    
3701

    
3702
--
3703
-- Name: method_accessioncode; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3704
--
3705

    
3706
CREATE UNIQUE INDEX method_accessioncode ON method  (accessioncode);
3707

    
3708

    
3709
--
3710
-- Name: method_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3711
--
3712

    
3713

    
3714

    
3715

    
3716
--
3717
-- Name: namedplace_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3718
--
3719

    
3720
CREATE UNIQUE INDEX namedplace_accessioncode_index ON namedplace  (accessioncode);
3721

    
3722

    
3723
--
3724
-- Name: namedplace_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3725
--
3726

    
3727

    
3728

    
3729

    
3730
--
3731
-- Name: note_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3732
--
3733

    
3734
CREATE UNIQUE INDEX note_accessioncode_index ON note  (accessioncode);
3735

    
3736

    
3737
--
3738
-- Name: party_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3739
--
3740

    
3741
CREATE UNIQUE INDEX party_accessioncode_index ON party  (accessioncode);
3742

    
3743

    
3744
--
3745
-- Name: party_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3746
--
3747

    
3748

    
3749

    
3750

    
3751
--
3752
-- Name: plantconcept_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3753
--
3754

    
3755
CREATE UNIQUE INDEX plantconcept_accessioncode_index ON plantconcept  (accessioncode);
3756

    
3757

    
3758
--
3759
-- Name: plantname_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3760
--
3761

    
3762

    
3763

    
3764

    
3765
--
3766
-- Name: plantnamescope_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3767
--
3768

    
3769

    
3770

    
3771

    
3772
--
3773
-- Name: plantobservation_aggregateoccurrence_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3774
--
3775

    
3776
CREATE UNIQUE INDEX plantobservation_aggregateoccurrence_1_to_1 ON plantobservation  (aggregateoccurrence_id);
3777

    
3778

    
3779
--
3780
-- Name: plantobservation_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3781
--
3782

    
3783

    
3784

    
3785

    
3786
--
3787
-- Name: plantstatus_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3788
--
3789

    
3790
CREATE UNIQUE INDEX plantstatus_accessioncode_index ON plantstatus  (accessioncode);
3791

    
3792

    
3793
--
3794
-- Name: project_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3795
--
3796

    
3797
CREATE UNIQUE INDEX project_accessioncode_index ON project  (accessioncode);
3798

    
3799

    
3800
--
3801
-- Name: project_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3802
--
3803

    
3804

    
3805

    
3806

    
3807
--
3808
-- Name: reference_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3809
--
3810

    
3811
CREATE UNIQUE INDEX reference_accessioncode_index ON reference  (accessioncode);
3812

    
3813

    
3814
--
3815
-- Name: referencejournal_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3816
--
3817

    
3818
CREATE UNIQUE INDEX referencejournal_accessioncode_index ON referencejournal  (accessioncode);
3819

    
3820

    
3821
--
3822
-- Name: referenceparty_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3823
--
3824

    
3825
CREATE UNIQUE INDEX referenceparty_accessioncode_index ON referenceparty  (accessioncode);
3826

    
3827

    
3828
--
3829
-- Name: soiltaxon_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3830
--
3831

    
3832
CREATE UNIQUE INDEX soiltaxon_accessioncode_index ON soiltaxon  (accessioncode);
3833

    
3834

    
3835
--
3836
-- Name: specimenreplicate_plantobservation_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3837
--
3838

    
3839

    
3840

    
3841

    
3842
--
3843
-- Name: specimenreplicate_unique_catalognumber; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3844
--
3845

    
3846

    
3847

    
3848

    
3849
--
3850
-- Name: specimenreplicate_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3851
--
3852

    
3853

    
3854

    
3855

    
3856
--
3857
-- Name: stemobservation_plantobservation_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3858
--
3859

    
3860

    
3861

    
3862

    
3863
--
3864
-- Name: stemobservation_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3865
--
3866

    
3867

    
3868

    
3869

    
3870
--
3871
-- Name: stemobservation_unique_within_plantobservation; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3872
--
3873

    
3874

    
3875

    
3876

    
3877
--
3878
-- Name: taxondetermination_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3879
--
3880

    
3881
CREATE UNIQUE INDEX taxondetermination_accessioncode_index ON taxondetermination  (accessioncode);
3882

    
3883

    
3884
--
3885
-- Name: taxondetermination_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3886
--
3887

    
3888

    
3889

    
3890

    
3891
--
3892
-- Name: taxonoccurrence_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3893
--
3894

    
3895
CREATE UNIQUE INDEX taxonoccurrence_accessioncode_index ON taxonoccurrence  (accessioncode);
3896

    
3897

    
3898
--
3899
-- Name: taxonoccurrence_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3900
--
3901

    
3902

    
3903

    
3904

    
3905
--
3906
-- Name: taxonoccurrence_unique_within_locationevent; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3907
--
3908

    
3909

    
3910

    
3911

    
3912
--
3913
-- Name: userdefined_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3914
--
3915

    
3916
CREATE UNIQUE INDEX userdefined_accessioncode_index ON userdefined  (accessioncode);
3917

    
3918

    
3919
--
3920
-- Name: namedplace_update_ancestors; Type: TRIGGER; Schema: public; Owner: -
3921
--
3922

    
3923

    
3924

    
3925

    
3926
--
3927
-- Name: plantname_update_ancestors; Type: TRIGGER; Schema: public; Owner: -
3928
--
3929

    
3930

    
3931

    
3932

    
3933
--
3934
-- Name: plantobservation_aggregateoccurrence_count_1; Type: TRIGGER; Schema: public; Owner: -
3935
--
3936

    
3937

    
3938

    
3939

    
3940
--
3941
-- Name: address_organization_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3942
--
3943

    
3944
ALTER TABLE address
3945
    ADD CONSTRAINT address_organization_id_fkey FOREIGN KEY (organization_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
3946

    
3947

    
3948
--
3949
-- Name: address_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3950
--
3951

    
3952
ALTER TABLE address
3953
    ADD CONSTRAINT address_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
3954

    
3955

    
3956
--
3957
-- Name: aggregateoccurrence_coverindex_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3958
--
3959

    
3960

    
3961

    
3962

    
3963
--
3964
-- Name: aggregateoccurrence_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3965
--
3966

    
3967

    
3968

    
3969

    
3970
--
3971
-- Name: aggregateoccurrence_method_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3972
--
3973

    
3974

    
3975

    
3976

    
3977
--
3978
-- Name: aggregateoccurrence_stratum_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3979
--
3980

    
3981
ALTER TABLE aggregateoccurrence
3982
    ADD CONSTRAINT aggregateoccurrence_stratum_id_fkey FOREIGN KEY (stratum_id) REFERENCES stratum(stratum_id) ON UPDATE CASCADE ON DELETE CASCADE;
3983

    
3984

    
3985
--
3986
-- Name: aggregateoccurrence_taxonoccurrence_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3987
--
3988

    
3989
ALTER TABLE aggregateoccurrence
3990
    ADD CONSTRAINT aggregateoccurrence_taxonoccurrence_id_fkey FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
3991

    
3992

    
3993
--
3994
-- Name: classcontributor_commclass_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3995
--
3996

    
3997
ALTER TABLE classcontributor
3998
    ADD CONSTRAINT classcontributor_commclass_id_fkey FOREIGN KEY (commclass_id) REFERENCES commclass(commclass_id) ON UPDATE CASCADE ON DELETE CASCADE;
3999

    
4000

    
4001
--
4002
-- Name: classcontributor_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4003
--
4004

    
4005

    
4006

    
4007

    
4008
--
4009
-- Name: commclass_classpublication_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4010
--
4011

    
4012

    
4013

    
4014

    
4015
--
4016
-- Name: commclass_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4017
--
4018

    
4019

    
4020

    
4021

    
4022
--
4023
-- Name: commconcept_commname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4024
--
4025

    
4026
ALTER TABLE commconcept
4027
    ADD CONSTRAINT commconcept_commname_id_fkey FOREIGN KEY (commname_id) REFERENCES commname(commname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4028

    
4029

    
4030
--
4031
-- Name: commconcept_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4032
--
4033

    
4034

    
4035

    
4036

    
4037
--
4038
-- Name: commcorrelation_commconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4039
--
4040

    
4041
ALTER TABLE commcorrelation
4042
    ADD CONSTRAINT commcorrelation_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4043

    
4044

    
4045
--
4046
-- Name: commcorrelation_commstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4047
--
4048

    
4049
ALTER TABLE commcorrelation
4050
    ADD CONSTRAINT commcorrelation_commstatus_id_fkey FOREIGN KEY (commstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4051

    
4052

    
4053
--
4054
-- Name: commdetermination_commauthority_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4055
--
4056

    
4057

    
4058

    
4059

    
4060
--
4061
-- Name: commdetermination_commclass_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4062
--
4063

    
4064
ALTER TABLE commdetermination
4065
    ADD CONSTRAINT commdetermination_commclass_id_fkey FOREIGN KEY (commclass_id) REFERENCES commclass(commclass_id) ON UPDATE CASCADE ON DELETE CASCADE;
4066

    
4067

    
4068
--
4069
-- Name: commdetermination_commconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4070
--
4071

    
4072
ALTER TABLE commdetermination
4073
    ADD CONSTRAINT commdetermination_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4074

    
4075

    
4076
--
4077
-- Name: commlineage_childcommstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4078
--
4079

    
4080
ALTER TABLE commlineage
4081
    ADD CONSTRAINT commlineage_childcommstatus_id_fkey FOREIGN KEY (childcommstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4082

    
4083

    
4084
--
4085
-- Name: commlineage_parentcommstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4086
--
4087

    
4088
ALTER TABLE commlineage
4089
    ADD CONSTRAINT commlineage_parentcommstatus_id_fkey FOREIGN KEY (parentcommstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4090

    
4091

    
4092
--
4093
-- Name: commname_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4094
--
4095

    
4096

    
4097

    
4098

    
4099
--
4100
-- Name: commstatus_commconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4101
--
4102

    
4103
ALTER TABLE commstatus
4104
    ADD CONSTRAINT commstatus_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4105

    
4106

    
4107
--
4108
-- Name: commstatus_commparent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4109
--
4110

    
4111
ALTER TABLE commstatus
4112
    ADD CONSTRAINT commstatus_commparent_id_fkey FOREIGN KEY (commparent_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4113

    
4114

    
4115
--
4116
-- Name: commstatus_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4117
--
4118

    
4119

    
4120

    
4121

    
4122
--
4123
-- Name: commstatus_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4124
--
4125

    
4126

    
4127

    
4128

    
4129
--
4130
-- Name: commusage_commconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4131
--
4132

    
4133
ALTER TABLE commusage
4134
    ADD CONSTRAINT commusage_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4135

    
4136

    
4137
--
4138
-- Name: commusage_commname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4139
--
4140

    
4141
ALTER TABLE commusage
4142
    ADD CONSTRAINT commusage_commname_id_fkey FOREIGN KEY (commname_id) REFERENCES commname(commname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4143

    
4144

    
4145
--
4146
-- Name: commusage_commstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4147
--
4148

    
4149
ALTER TABLE commusage
4150
    ADD CONSTRAINT commusage_commstatus_id_fkey FOREIGN KEY (commstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4151

    
4152

    
4153
--
4154
-- Name: commusage_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4155
--
4156

    
4157

    
4158

    
4159

    
4160
--
4161
-- Name: coverindex_covermethod_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4162
--
4163

    
4164
ALTER TABLE coverindex
4165
    ADD CONSTRAINT coverindex_covermethod_id_fkey FOREIGN KEY (covermethod_id) REFERENCES covermethod(covermethod_id) ON UPDATE CASCADE ON DELETE CASCADE;
4166

    
4167

    
4168
--
4169
-- Name: covermethod_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4170
--
4171

    
4172

    
4173

    
4174

    
4175
--
4176
-- Name: definedvalue_userdefined_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4177
--
4178

    
4179
ALTER TABLE definedvalue
4180
    ADD CONSTRAINT definedvalue_userdefined_id_fkey FOREIGN KEY (userdefined_id) REFERENCES userdefined(userdefined_id) ON UPDATE CASCADE ON DELETE CASCADE;
4181

    
4182

    
4183
--
4184
-- Name: disturbanceobs_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4185
--
4186

    
4187
ALTER TABLE disturbanceobs
4188
    ADD CONSTRAINT disturbanceobs_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4189

    
4190

    
4191
--
4192
-- Name: graphic_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4193
--
4194

    
4195
ALTER TABLE graphic
4196
    ADD CONSTRAINT graphic_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4197

    
4198

    
4199
--
4200
-- Name: location_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4201
--
4202

    
4203

    
4204

    
4205

    
4206
--
4207
-- Name: location_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4208
--
4209

    
4210
ALTER TABLE location
4211
    ADD CONSTRAINT location_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES location(location_id) ON UPDATE CASCADE ON DELETE CASCADE;
4212

    
4213

    
4214
--
4215
-- Name: locationdetermination_identifier_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4216
--
4217

    
4218

    
4219

    
4220

    
4221
--
4222
-- Name: locationdetermination_location_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4223
--
4224

    
4225
ALTER TABLE locationdetermination
4226
    ADD CONSTRAINT locationdetermination_location_id_fkey FOREIGN KEY (location_id) REFERENCES location(location_id) ON UPDATE CASCADE ON DELETE CASCADE;
4227

    
4228

    
4229
--
4230
-- Name: locationdetermination_namedplace_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4231
--
4232

    
4233
ALTER TABLE locationdetermination
4234
    ADD CONSTRAINT locationdetermination_namedplace_id_fkey FOREIGN KEY (namedplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4235

    
4236

    
4237
--
4238
-- Name: locationevent_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4239
--
4240

    
4241

    
4242

    
4243

    
4244
--
4245
-- Name: locationevent_location_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4246
--
4247

    
4248
ALTER TABLE locationevent
4249
    ADD CONSTRAINT locationevent_location_id_fkey FOREIGN KEY (location_id) REFERENCES location(location_id) ON UPDATE CASCADE ON DELETE CASCADE;
4250

    
4251

    
4252
--
4253
-- Name: locationevent_method_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4254
--
4255

    
4256

    
4257

    
4258

    
4259
--
4260
-- Name: locationevent_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4261
--
4262

    
4263
ALTER TABLE locationevent
4264
    ADD CONSTRAINT locationevent_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4265

    
4266

    
4267
--
4268
-- Name: locationevent_previous_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4269
--
4270

    
4271
ALTER TABLE locationevent
4272
    ADD CONSTRAINT locationevent_previous_id_fkey FOREIGN KEY (previous_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4273

    
4274

    
4275
--
4276
-- Name: locationevent_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4277
--
4278

    
4279
ALTER TABLE locationevent
4280
    ADD CONSTRAINT locationevent_project_id_fkey FOREIGN KEY (project_id) REFERENCES project(project_id) ON UPDATE CASCADE ON DELETE CASCADE;
4281

    
4282

    
4283
--
4284
-- Name: locationevent_soiltaxon_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4285
--
4286

    
4287
ALTER TABLE locationevent
4288
    ADD CONSTRAINT locationevent_soiltaxon_id_fkey FOREIGN KEY (soiltaxon_id) REFERENCES soiltaxon(soiltaxon_id) ON UPDATE CASCADE ON DELETE CASCADE;
4289

    
4290

    
4291
--
4292
-- Name: locationeventcontributor_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4293
--
4294

    
4295
ALTER TABLE locationeventcontributor
4296
    ADD CONSTRAINT locationeventcontributor_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4297

    
4298

    
4299
--
4300
-- Name: locationeventcontributor_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4301
--
4302

    
4303

    
4304

    
4305

    
4306
--
4307
-- Name: locationeventsynonym_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4308
--
4309

    
4310

    
4311

    
4312

    
4313
--
4314
-- Name: locationeventsynonym_primarylocationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4315
--
4316

    
4317
ALTER TABLE locationeventsynonym
4318
    ADD CONSTRAINT locationeventsynonym_primarylocationevent_id_fkey FOREIGN KEY (primarylocationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4319

    
4320

    
4321
--
4322
-- Name: locationeventsynonym_synonymlocationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4323
--
4324

    
4325
ALTER TABLE locationeventsynonym
4326
    ADD CONSTRAINT locationeventsynonym_synonymlocationevent_id_fkey FOREIGN KEY (synonymlocationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4327

    
4328

    
4329
--
4330
-- Name: method_covermethod_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4331
--
4332

    
4333
ALTER TABLE method
4334
    ADD CONSTRAINT method_covermethod_id_fkey FOREIGN KEY (covermethod_id) REFERENCES covermethod(covermethod_id) ON UPDATE CASCADE ON DELETE CASCADE;
4335

    
4336

    
4337
--
4338
-- Name: method_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4339
--
4340

    
4341

    
4342

    
4343

    
4344
--
4345
-- Name: method_subplotmethod_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4346
--
4347

    
4348
ALTER TABLE method
4349
    ADD CONSTRAINT method_subplotmethod_id_fkey FOREIGN KEY (subplotmethod_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE SET NULL;
4350

    
4351

    
4352
--
4353
-- Name: methodtaxonclass_method_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4354
--
4355

    
4356
ALTER TABLE methodtaxonclass
4357
    ADD CONSTRAINT methodtaxonclass_method_id_fkey FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE;
4358

    
4359

    
4360
--
4361
-- Name: methodtaxonclass_plantconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4362
--
4363

    
4364
ALTER TABLE methodtaxonclass
4365
    ADD CONSTRAINT methodtaxonclass_plantconcept_id_fkey FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4366

    
4367

    
4368
--
4369
-- Name: methodtaxonclass_submethod_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4370
--
4371

    
4372
ALTER TABLE methodtaxonclass
4373
    ADD CONSTRAINT methodtaxonclass_submethod_id_fkey FOREIGN KEY (submethod_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE SET NULL;
4374

    
4375

    
4376
--
4377
-- Name: namedplace_ancestor_ancestor_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4378
--
4379

    
4380
ALTER TABLE namedplace_ancestor
4381
    ADD CONSTRAINT namedplace_ancestor_ancestor_id_fkey FOREIGN KEY (ancestor_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4382

    
4383

    
4384
--
4385
-- Name: namedplace_ancestor_namedplace_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4386
--
4387

    
4388
ALTER TABLE namedplace_ancestor
4389
    ADD CONSTRAINT namedplace_ancestor_namedplace_id_fkey FOREIGN KEY (namedplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4390

    
4391

    
4392
--
4393
-- Name: namedplace_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4394
--
4395

    
4396
ALTER TABLE namedplace
4397
    ADD CONSTRAINT namedplace_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4398

    
4399

    
4400
--
4401
-- Name: namedplacecorrelation_childplace_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4402
--
4403

    
4404
ALTER TABLE namedplacecorrelation
4405
    ADD CONSTRAINT namedplacecorrelation_childplace_id_fkey FOREIGN KEY (childplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4406

    
4407

    
4408
--
4409
-- Name: namedplacecorrelation_parentplace_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4410
--
4411

    
4412
ALTER TABLE namedplacecorrelation
4413
    ADD CONSTRAINT namedplacecorrelation_parentplace_id_fkey FOREIGN KEY (parentplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4414

    
4415

    
4416
--
4417
-- Name: note_notelink_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4418
--
4419

    
4420
ALTER TABLE note
4421
    ADD CONSTRAINT note_notelink_id_fkey FOREIGN KEY (notelink_id) REFERENCES notelink(notelink_id) ON UPDATE CASCADE ON DELETE CASCADE;
4422

    
4423

    
4424
--
4425
-- Name: note_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4426
--
4427

    
4428

    
4429

    
4430

    
4431
--
4432
-- Name: party_currentname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4433
--
4434

    
4435
ALTER TABLE party
4436
    ADD CONSTRAINT party_currentname_id_fkey FOREIGN KEY (currentname_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
4437

    
4438

    
4439
--
4440
-- Name: partymember_childparty_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4441
--
4442

    
4443
ALTER TABLE partymember
4444
    ADD CONSTRAINT partymember_childparty_id_fkey FOREIGN KEY (childparty_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
4445

    
4446

    
4447
--
4448
-- Name: partymember_parentparty_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4449
--
4450

    
4451
ALTER TABLE partymember
4452
    ADD CONSTRAINT partymember_parentparty_id_fkey FOREIGN KEY (parentparty_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
4453

    
4454

    
4455
--
4456
-- Name: plantconcept_plantname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4457
--
4458

    
4459
ALTER TABLE plantconcept
4460
    ADD CONSTRAINT plantconcept_plantname_id_fkey FOREIGN KEY (plantname_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4461

    
4462

    
4463
--
4464
-- Name: plantcorrelation_plantconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4465
--
4466

    
4467

    
4468

    
4469

    
4470
--
4471
-- Name: plantcorrelation_plantstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4472
--
4473

    
4474
ALTER TABLE plantcorrelation
4475
    ADD CONSTRAINT plantcorrelation_plantstatus_id_fkey FOREIGN KEY (plantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4476

    
4477

    
4478
--
4479
-- Name: plantlineage_childplantstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4480
--
4481

    
4482
ALTER TABLE plantlineage
4483
    ADD CONSTRAINT plantlineage_childplantstatus_id_fkey FOREIGN KEY (childplantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4484

    
4485

    
4486
--
4487
-- Name: plantlineage_parentplantstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4488
--
4489

    
4490
ALTER TABLE plantlineage
4491
    ADD CONSTRAINT plantlineage_parentplantstatus_id_fkey FOREIGN KEY (parentplantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4492

    
4493

    
4494
--
4495
-- Name: plantname_ancestor_ancestor_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4496
--
4497

    
4498
ALTER TABLE plantname_ancestor
4499
    ADD CONSTRAINT plantname_ancestor_ancestor_id_fkey FOREIGN KEY (ancestor_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4500

    
4501

    
4502
--
4503
-- Name: plantname_ancestor_plantname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4504
--
4505

    
4506
ALTER TABLE plantname_ancestor
4507
    ADD CONSTRAINT plantname_ancestor_plantname_id_fkey FOREIGN KEY (plantname_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4508

    
4509

    
4510
--
4511
-- Name: plantname_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4512
--
4513

    
4514
ALTER TABLE plantname
4515
    ADD CONSTRAINT plantname_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4516

    
4517

    
4518
--
4519
-- Name: plantname_scope_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4520
--
4521

    
4522
ALTER TABLE plantname
4523
    ADD CONSTRAINT plantname_scope_id_fkey FOREIGN KEY (scope_id) REFERENCES plantnamescope(plantnamescope_id) ON UPDATE CASCADE ON DELETE CASCADE;
4524

    
4525

    
4526
--
4527
-- Name: plantnamescope_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4528
--
4529

    
4530

    
4531

    
4532

    
4533
--
4534
-- Name: plantnamescope_namedplace_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4535
--
4536

    
4537

    
4538

    
4539

    
4540
--
4541
-- Name: plantnamescope_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4542
--
4543

    
4544

    
4545

    
4546

    
4547
--
4548
-- Name: plantobservation_aggregateoccurrence_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4549
--
4550

    
4551
ALTER TABLE plantobservation
4552
    ADD CONSTRAINT plantobservation_aggregateoccurrence_id_fkey FOREIGN KEY (aggregateoccurrence_id) REFERENCES aggregateoccurrence(aggregateoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
4553

    
4554

    
4555
--
4556
-- Name: plantobservation_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4557
--
4558

    
4559

    
4560

    
4561

    
4562
--
4563
-- Name: plantobservation_plant_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4564
--
4565

    
4566
ALTER TABLE plantobservation
4567
    ADD CONSTRAINT plantobservation_plant_id_fkey FOREIGN KEY (plant_id) REFERENCES plant(plant_id) ON UPDATE CASCADE ON DELETE CASCADE;
4568

    
4569

    
4570
--
4571
-- Name: plantstatus_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4572
--
4573

    
4574

    
4575

    
4576

    
4577
--
4578
-- Name: plantstatus_plantconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4579
--
4580

    
4581

    
4582

    
4583

    
4584
--
4585
-- Name: plantstatus_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4586
--
4587

    
4588

    
4589

    
4590

    
4591
--
4592
-- Name: plantusage_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4593
--
4594

    
4595

    
4596

    
4597

    
4598
--
4599
-- Name: plantusage_plantconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4600
--
4601

    
4602

    
4603

    
4604

    
4605
--
4606
-- Name: plantusage_plantname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4607
--
4608

    
4609
ALTER TABLE plantusage
4610
    ADD CONSTRAINT plantusage_plantname_id_fkey FOREIGN KEY (plantname_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4611

    
4612

    
4613
--
4614
-- Name: plantusage_plantstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4615
--
4616

    
4617
ALTER TABLE plantusage
4618
    ADD CONSTRAINT plantusage_plantstatus_id_fkey FOREIGN KEY (plantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4619

    
4620

    
4621
--
4622
-- Name: project_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4623
--
4624

    
4625

    
4626

    
4627

    
4628
--
4629
-- Name: projectcontributor_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4630
--
4631

    
4632

    
4633

    
4634

    
4635
--
4636
-- Name: projectcontributor_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4637
--
4638

    
4639
ALTER TABLE projectcontributor
4640
    ADD CONSTRAINT projectcontributor_project_id_fkey FOREIGN KEY (project_id) REFERENCES project(project_id) ON UPDATE CASCADE ON DELETE CASCADE;
4641

    
4642

    
4643
--
4644
-- Name: reference_referencejournal_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4645
--
4646

    
4647
ALTER TABLE reference
4648
    ADD CONSTRAINT reference_referencejournal_id_fkey FOREIGN KEY (referencejournal_id) REFERENCES referencejournal(referencejournal_id) ON UPDATE CASCADE ON DELETE CASCADE;
4649

    
4650

    
4651
--
4652
-- Name: referencealtident_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4653
--
4654

    
4655
ALTER TABLE referencealtident
4656
    ADD CONSTRAINT referencealtident_reference_id_fkey FOREIGN KEY (reference_id) REFERENCES reference(reference_id) ON UPDATE CASCADE ON DELETE CASCADE;
4657

    
4658

    
4659
--
4660
-- Name: referencecontributor_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4661
--
4662

    
4663
ALTER TABLE referencecontributor
4664
    ADD CONSTRAINT referencecontributor_reference_id_fkey FOREIGN KEY (reference_id) REFERENCES reference(reference_id) ON UPDATE CASCADE ON DELETE CASCADE;
4665

    
4666

    
4667
--
4668
-- Name: referencecontributor_referenceparty_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4669
--
4670

    
4671
ALTER TABLE referencecontributor
4672
    ADD CONSTRAINT referencecontributor_referenceparty_id_fkey FOREIGN KEY (referenceparty_id) REFERENCES referenceparty(referenceparty_id) ON UPDATE CASCADE ON DELETE CASCADE;
4673

    
4674

    
4675
--
4676
-- Name: referenceparty_currentparty_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4677
--
4678

    
4679
ALTER TABLE referenceparty
4680
    ADD CONSTRAINT referenceparty_currentparty_id_fkey FOREIGN KEY (currentparty_id) REFERENCES referenceparty(referenceparty_id) ON UPDATE CASCADE ON DELETE CASCADE;
4681

    
4682

    
4683
--
4684
-- Name: revision_previousrevision_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4685
--
4686

    
4687
ALTER TABLE revision
4688
    ADD CONSTRAINT revision_previousrevision_id_fkey FOREIGN KEY (previousrevision_id) REFERENCES revision(revision_id) ON UPDATE CASCADE ON DELETE CASCADE;
4689

    
4690

    
4691
--
4692
-- Name: soilobs_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4693
--
4694

    
4695
ALTER TABLE soilobs
4696
    ADD CONSTRAINT soilobs_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4697

    
4698

    
4699
--
4700
-- Name: soiltaxon_soilparent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4701
--
4702

    
4703
ALTER TABLE soiltaxon
4704
    ADD CONSTRAINT soiltaxon_soilparent_id_fkey FOREIGN KEY (soilparent_id) REFERENCES soiltaxon(soiltaxon_id) ON UPDATE CASCADE ON DELETE CASCADE;
4705

    
4706

    
4707
--
4708
-- Name: specimenreplicate_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4709
--
4710

    
4711

    
4712

    
4713

    
4714
--
4715
-- Name: specimenreplicate_institution_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4716
--
4717

    
4718

    
4719

    
4720

    
4721
--
4722
-- Name: specimenreplicate_plantobservation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4723
--
4724

    
4725
ALTER TABLE specimenreplicate
4726
    ADD CONSTRAINT specimenreplicate_plantobservation_id_fkey FOREIGN KEY (plantobservation_id) REFERENCES plantobservation(plantobservation_id) ON UPDATE CASCADE ON DELETE CASCADE;
4727

    
4728

    
4729
--
4730
-- Name: specimenreplicate_specimen_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4731
--
4732

    
4733
ALTER TABLE specimenreplicate
4734
    ADD CONSTRAINT specimenreplicate_specimen_id_fkey FOREIGN KEY (specimen_id) REFERENCES specimen(specimen_id) ON UPDATE CASCADE ON DELETE CASCADE;
4735

    
4736

    
4737
--
4738
-- Name: stemobservation_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4739
--
4740

    
4741

    
4742

    
4743

    
4744
--
4745
-- Name: stemobservation_plantobservation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4746
--
4747

    
4748
ALTER TABLE stemobservation
4749
    ADD CONSTRAINT stemobservation_plantobservation_id_fkey FOREIGN KEY (plantobservation_id) REFERENCES plantobservation(plantobservation_id) ON UPDATE CASCADE ON DELETE CASCADE;
4750

    
4751

    
4752
--
4753
-- Name: stemtag_stemobservation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4754
--
4755

    
4756
ALTER TABLE stemtag
4757
    ADD CONSTRAINT stemtag_stemobservation_id_fkey FOREIGN KEY (stemobservation_id) REFERENCES stemobservation(stemobservation_id) ON UPDATE CASCADE ON DELETE CASCADE;
4758

    
4759

    
4760
--
4761
-- Name: stratum_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4762
--
4763

    
4764
ALTER TABLE stratum
4765
    ADD CONSTRAINT stratum_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4766

    
4767

    
4768
--
4769
-- Name: stratum_method_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4770
--
4771

    
4772

    
4773

    
4774

    
4775
--
4776
-- Name: taxonalt_plantconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4777
--
4778

    
4779
ALTER TABLE taxonalt
4780
    ADD CONSTRAINT taxonalt_plantconcept_id_fkey FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4781

    
4782

    
4783
--
4784
-- Name: taxonalt_taxondetermination_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4785
--
4786

    
4787
ALTER TABLE taxonalt
4788
    ADD CONSTRAINT taxonalt_taxondetermination_id_fkey FOREIGN KEY (taxondetermination_id) REFERENCES taxondetermination(taxondetermination_id) ON UPDATE CASCADE ON DELETE CASCADE;
4789

    
4790

    
4791
--
4792
-- Name: taxondetermination_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4793
--
4794

    
4795

    
4796

    
4797

    
4798
--
4799
-- Name: taxondetermination_plantconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4800
--
4801

    
4802
ALTER TABLE taxondetermination
4803
    ADD CONSTRAINT taxondetermination_plantconcept_id_fkey FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4804

    
4805

    
4806
--
4807
-- Name: taxondetermination_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4808
--
4809

    
4810

    
4811

    
4812

    
4813
--
4814
-- Name: taxondetermination_taxonoccurrence_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4815
--
4816

    
4817
ALTER TABLE taxondetermination
4818
    ADD CONSTRAINT taxondetermination_taxonoccurrence_id_fkey FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
4819

    
4820

    
4821
--
4822
-- Name: taxonoccurrence_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4823
--
4824

    
4825

    
4826

    
4827

    
4828
--
4829
-- Name: taxonoccurrence_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4830
--
4831

    
4832
ALTER TABLE taxonoccurrence
4833
    ADD CONSTRAINT taxonoccurrence_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4834

    
4835

    
4836
--
4837
-- Name: telephone_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4838
--
4839

    
4840
ALTER TABLE telephone
4841
    ADD CONSTRAINT telephone_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
4842

    
4843

    
4844
--
4845
-- Name: trait_stemobservation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4846
--
4847

    
4848
ALTER TABLE trait
4849
    ADD CONSTRAINT trait_stemobservation_id_fkey FOREIGN KEY (stemobservation_id) REFERENCES stemobservation(stemobservation_id) ON UPDATE CASCADE ON DELETE CASCADE;
4850

    
4851

    
4852
--
4853
-- Name: voucher_specimenreplicate_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4854
--
4855

    
4856
ALTER TABLE voucher
4857
    ADD CONSTRAINT voucher_specimenreplicate_id_fkey FOREIGN KEY (specimenreplicate_id) REFERENCES specimenreplicate(specimenreplicate_id) ON UPDATE CASCADE ON DELETE CASCADE;
4858

    
4859

    
4860
--
4861
-- Name: voucher_taxonoccurrence_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4862
--
4863

    
4864
ALTER TABLE voucher
4865
    ADD CONSTRAINT voucher_taxonoccurrence_id_fkey FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
4866

    
4867

    
4868
--
4869
-- PostgreSQL database dump complete
4870
--
4871

    
(19-19/20)