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: taxondetermination_taxonoccurrence_id_fkey(); Type: FUNCTION; Schema: public; Owner: -
107
--
108

    
109

    
110

    
111

    
112
--
113
-- Name: concat(text); Type: AGGREGATE; Schema: public; Owner: -
114
--
115

    
116

    
117

    
118

    
119

    
120

    
121

    
122

    
123
--
124
-- Name: address; Type: TABLE; Schema: public; Owner: -; Tablespace: 
125
--
126

    
127
CREATE TABLE address (
128
    address_id int(11) NOT NULL,
129
    party_id int(11) NOT NULL,
130
    organization_id int(11),
131
    orgposition text,
132
    email text,
133
    deliverypoint text,
134
    city text,
135
    administrativearea text,
136
    postalcode text,
137
    country text,
138
    currentflag int(1),
139
    addressstartdate timestamp NULL
140
);
141

    
142

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

    
147

    
148

    
149

    
150
--
151
-- Name: address_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
152
--
153

    
154

    
155

    
156

    
157
--
158
-- Name: aggregateoccurrence; Type: TABLE; Schema: public; Owner: -; Tablespace: 
159
--
160

    
161
CREATE TABLE aggregateoccurrence (
162
    aggregateoccurrence_id int(11) NOT NULL,
163
    datasource_id int(11) NOT NULL,
164
    sourceaccessioncode text,
165
    taxonoccurrence_id int(11) NOT NULL,
166
    cover double precision,
167
    basalarea double precision,
168
    biomass double precision,
169
    inferencearea double precision,
170
    count int(11),
171
    stratum_id int(11),
172
    coverindex_id int(11),
173
    occurrencestatus_dwc text DEFAULT 'present' NOT NULL,
174
    method_id int(11),
175
    linecover double precision,
176
    accessioncode text
177
);
178

    
179

    
180
--
181
-- Name: TABLE aggregateoccurrence; Type: COMMENT; Schema: public; Owner: -
182
--
183

    
184

    
185

    
186

    
187
--
188
-- Name: COLUMN aggregateoccurrence.occurrencestatus_dwc; Type: COMMENT; Schema: public; Owner: -
189
--
190

    
191

    
192

    
193

    
194
--
195
-- Name: COLUMN aggregateoccurrence.linecover; Type: COMMENT; Schema: public; Owner: -
196
--
197

    
198

    
199

    
200

    
201
--
202
-- Name: aggregateoccurrence_aggregateoccurrence_id_seq; Type: SEQUENCE; Schema: public; Owner: -
203
--
204

    
205

    
206

    
207

    
208
--
209
-- Name: aggregateoccurrence_aggregateoccurrence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
210
--
211

    
212

    
213

    
214

    
215
--
216
-- Name: classcontributor; Type: TABLE; Schema: public; Owner: -; Tablespace: 
217
--
218

    
219
CREATE TABLE classcontributor (
220
    classcontributor_id int(11) NOT NULL,
221
    commclass_id int(11) NOT NULL,
222
    party_id int(11) NOT NULL,
223
    role text
224
);
225

    
226

    
227
--
228
-- Name: classcontributor_classcontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: -
229
--
230

    
231

    
232

    
233

    
234
--
235
-- Name: classcontributor_classcontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
236
--
237

    
238

    
239

    
240

    
241
--
242
-- Name: commclass; Type: TABLE; Schema: public; Owner: -; Tablespace: 
243
--
244

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

    
263

    
264
--
265
-- Name: commclass_commclass_id_seq; Type: SEQUENCE; Schema: public; Owner: -
266
--
267

    
268

    
269

    
270

    
271
--
272
-- Name: commclass_commclass_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
273
--
274

    
275

    
276

    
277

    
278
--
279
-- Name: commconcept; Type: TABLE; Schema: public; Owner: -; Tablespace: 
280
--
281

    
282
CREATE TABLE commconcept (
283
    commconcept_id int(11) NOT NULL,
284
    commname_id int(11) NOT NULL,
285
    reference_id int(11),
286
    commdescription text,
287
    d_obscount int(11),
288
    commname text,
289
    d_currentaccepted int(1),
290
    accessioncode text
291
);
292

    
293

    
294
--
295
-- Name: commconcept_commconcept_id_seq; Type: SEQUENCE; Schema: public; Owner: -
296
--
297

    
298

    
299

    
300

    
301
--
302
-- Name: commconcept_commconcept_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
303
--
304

    
305

    
306

    
307

    
308
--
309
-- Name: commcorrelation; Type: TABLE; Schema: public; Owner: -; Tablespace: 
310
--
311

    
312
CREATE TABLE commcorrelation (
313
    commcorrelation_id int(11) NOT NULL,
314
    commstatus_id int(11) NOT NULL,
315
    commconcept_id int(11) NOT NULL,
316
    commconvergence text NOT NULL,
317
    correlationstart timestamp NOT NULL,
318
    correlationstop timestamp NULL
319
);
320

    
321

    
322
--
323
-- Name: commcorrelation_commcorrelation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
324
--
325

    
326

    
327

    
328

    
329
--
330
-- Name: commcorrelation_commcorrelation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
331
--
332

    
333

    
334

    
335

    
336
--
337
-- Name: commdetermination; Type: TABLE; Schema: public; Owner: -; Tablespace: 
338
--
339

    
340
CREATE TABLE commdetermination (
341
    commdetermination_id int(11) NOT NULL,
342
    commclass_id int(11) NOT NULL,
343
    commconcept_id int(11) NOT NULL,
344
    commcode text,
345
    commname text,
346
    classfit text,
347
    classconfidence text,
348
    commauthority_id int(11),
349
    notes text,
350
    type int(1),
351
    nomenclaturaltype int(1)
352
);
353

    
354

    
355
--
356
-- Name: commdetermination_commdetermination_id_seq; Type: SEQUENCE; Schema: public; Owner: -
357
--
358

    
359

    
360

    
361

    
362
--
363
-- Name: commdetermination_commdetermination_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
364
--
365

    
366

    
367

    
368

    
369
--
370
-- Name: commlineage; Type: TABLE; Schema: public; Owner: -; Tablespace: 
371
--
372

    
373
CREATE TABLE commlineage (
374
    commlineage_id int(11) NOT NULL,
375
    parentcommstatus_id int(11) NOT NULL,
376
    childcommstatus_id int(11) NOT NULL
377
);
378

    
379

    
380
--
381
-- Name: commlineage_commlineage_id_seq; Type: SEQUENCE; Schema: public; Owner: -
382
--
383

    
384

    
385

    
386

    
387
--
388
-- Name: commlineage_commlineage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
389
--
390

    
391

    
392

    
393

    
394
--
395
-- Name: commname; Type: TABLE; Schema: public; Owner: -; Tablespace: 
396
--
397

    
398
CREATE TABLE commname (
399
    commname_id int(11) NOT NULL,
400
    commname text NOT NULL,
401
    reference_id int(11),
402
    dateentered timestamp NULL 
403
);
404

    
405

    
406
--
407
-- Name: commname_commname_id_seq; Type: SEQUENCE; Schema: public; Owner: -
408
--
409

    
410

    
411

    
412

    
413
--
414
-- Name: commname_commname_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
415
--
416

    
417

    
418

    
419

    
420
--
421
-- Name: commstatus; Type: TABLE; Schema: public; Owner: -; Tablespace: 
422
--
423

    
424
CREATE TABLE commstatus (
425
    commstatus_id int(11) NOT NULL,
426
    commconcept_id int(11) NOT NULL,
427
    reference_id int(11),
428
    commconceptstatus text NOT NULL,
429
    commparent_id int(11),
430
    commlevel text,
431
    commpartycomments text,
432
    party_id int(11) NOT NULL,
433
    startdate timestamp NOT NULL,
434
    stopdate timestamp NULL,
435
    accessioncode text
436
);
437

    
438

    
439
--
440
-- Name: commstatus_commstatus_id_seq; Type: SEQUENCE; Schema: public; Owner: -
441
--
442

    
443

    
444

    
445

    
446
--
447
-- Name: commstatus_commstatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
448
--
449

    
450

    
451

    
452

    
453
--
454
-- Name: commusage; Type: TABLE; Schema: public; Owner: -; Tablespace: 
455
--
456

    
457
CREATE TABLE commusage (
458
    commusage_id int(11) NOT NULL,
459
    commname_id int(11) NOT NULL,
460
    commname text,
461
    commconcept_id int(11),
462
    commnamestatus text,
463
    classsystem text,
464
    party_id int(11),
465
    commstatus_id int(11),
466
    usagestart timestamp NULL,
467
    usagestop timestamp NULL
468
);
469

    
470

    
471
--
472
-- Name: commusage_commusage_id_seq; Type: SEQUENCE; Schema: public; Owner: -
473
--
474

    
475

    
476

    
477

    
478
--
479
-- Name: commusage_commusage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
480
--
481

    
482

    
483

    
484

    
485
--
486
-- Name: coverindex; Type: TABLE; Schema: public; Owner: -; Tablespace: 
487
--
488

    
489
CREATE TABLE coverindex (
490
    coverindex_id int(11) NOT NULL,
491
    covermethod_id int(11) NOT NULL,
492
    covercode text NOT NULL,
493
    upperlimit double precision,
494
    lowerlimit double precision,
495
    coverpercent double precision NOT NULL,
496
    indexdescription text
497
);
498

    
499

    
500
--
501
-- Name: coverindex_coverindex_id_seq; Type: SEQUENCE; Schema: public; Owner: -
502
--
503

    
504

    
505

    
506

    
507
--
508
-- Name: coverindex_coverindex_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
509
--
510

    
511

    
512

    
513

    
514
--
515
-- Name: covermethod; Type: TABLE; Schema: public; Owner: -; Tablespace: 
516
--
517

    
518
CREATE TABLE covermethod (
519
    covermethod_id int(11) NOT NULL,
520
    reference_id int(11),
521
    covertype text NOT NULL,
522
    coverestimationmethod text,
523
    accessioncode text
524
);
525

    
526

    
527
--
528
-- Name: covermethod_covermethod_id_seq; Type: SEQUENCE; Schema: public; Owner: -
529
--
530

    
531

    
532

    
533

    
534
--
535
-- Name: covermethod_covermethod_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
536
--
537

    
538

    
539

    
540

    
541
--
542
-- Name: dba_preassignacccode_dba_requestnumber_seq; Type: SEQUENCE; Schema: public; Owner: -
543
--
544

    
545

    
546

    
547

    
548
--
549
-- Name: definedvalue; Type: TABLE; Schema: public; Owner: -; Tablespace: 
550
--
551

    
552
CREATE TABLE definedvalue (
553
    definedvalue_id int(11) NOT NULL,
554
    userdefined_id int(11) NOT NULL,
555
    tablerecord_id int(11) NOT NULL,
556
    definedvalue text
557
);
558

    
559

    
560
--
561
-- Name: definedvalue_definedvalue_id_seq; Type: SEQUENCE; Schema: public; Owner: -
562
--
563

    
564

    
565

    
566

    
567
--
568
-- Name: definedvalue_definedvalue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
569
--
570

    
571

    
572

    
573

    
574
--
575
-- Name: disturbanceobs; Type: TABLE; Schema: public; Owner: -; Tablespace: 
576
--
577

    
578
CREATE TABLE disturbanceobs (
579
    disturbanceobs_id int(11) NOT NULL,
580
    locationevent_id int(11) NOT NULL,
581
    disturbancetype text NOT NULL,
582
    disturbanceintensity text,
583
    disturbanceage double precision,
584
    disturbanceextent double precision,
585
    disturbancecomment text
586
);
587

    
588

    
589
--
590
-- Name: disturbanceobs_disturbanceobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
591
--
592

    
593

    
594

    
595

    
596
--
597
-- Name: disturbanceobs_disturbanceobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
598
--
599

    
600

    
601

    
602

    
603
--
604
-- Name: graphic; Type: TABLE; Schema: public; Owner: -; Tablespace: 
605
--
606

    
607
CREATE TABLE graphic (
608
    graphic_id int(11) NOT NULL,
609
    locationevent_id int(11) NOT NULL,
610
    graphicname text,
611
    graphiclocation text,
612
    graphicdescription text,
613
    graphictype text,
614
    graphicdata int(11),
615
    graphicdate timestamp NULL,
616
    accessioncode text
617
);
618

    
619

    
620
--
621
-- Name: graphic_graphic_id_seq; Type: SEQUENCE; Schema: public; Owner: -
622
--
623

    
624

    
625

    
626

    
627
--
628
-- Name: graphic_graphic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
629
--
630

    
631

    
632

    
633

    
634
--
635
-- Name: location; Type: TABLE; Schema: public; Owner: -; Tablespace: 
636
--
637

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

    
691

    
692
--
693
-- Name: TABLE location; Type: COMMENT; Schema: public; Owner: -
694
--
695

    
696

    
697

    
698

    
699
--
700
-- Name: location_location_id_seq; Type: SEQUENCE; Schema: public; Owner: -
701
--
702

    
703

    
704

    
705

    
706
--
707
-- Name: location_location_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
708
--
709

    
710

    
711

    
712

    
713
--
714
-- Name: locationdetermination; Type: TABLE; Schema: public; Owner: -; Tablespace: 
715
--
716

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

    
732

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

    
737

    
738

    
739

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

    
744

    
745

    
746

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

    
751

    
752

    
753

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

    
758

    
759

    
760

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

    
765

    
766

    
767

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

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

    
851

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

    
856

    
857

    
858

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

    
863

    
864

    
865

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

    
870

    
871

    
872

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

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

    
885

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

    
890

    
891

    
892

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

    
897

    
898

    
899

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

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

    
916

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

    
921

    
922

    
923

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

    
928

    
929

    
930

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

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

    
963

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

    
968

    
969

    
970

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

    
975

    
976

    
977

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

    
982

    
983

    
984

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

    
989

    
990

    
991

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

    
996

    
997

    
998

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

    
1003

    
1004

    
1005

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

    
1010

    
1011

    
1012

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

    
1017

    
1018

    
1019

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

    
1024

    
1025

    
1026

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

    
1031

    
1032

    
1033

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

    
1038

    
1039

    
1040

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

    
1045

    
1046

    
1047

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

    
1052

    
1053

    
1054

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

    
1059

    
1060

    
1061

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

    
1066

    
1067

    
1068

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

    
1073

    
1074

    
1075

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

    
1080

    
1081

    
1082

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

    
1087

    
1088

    
1089

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

    
1094

    
1095

    
1096

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

    
1101

    
1102

    
1103

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

    
1108

    
1109

    
1110

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

    
1115

    
1116

    
1117

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

    
1122

    
1123

    
1124

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

    
1129

    
1130

    
1131

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

    
1136

    
1137

    
1138

    
1139

    
1140

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

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

    
1154

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

    
1159

    
1160

    
1161

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

    
1166

    
1167

    
1168

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

    
1173

    
1174

    
1175

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

    
1180

    
1181

    
1182

    
1183

    
1184

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

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

    
1199

    
1200

    
1201

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

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

    
1211

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

    
1216

    
1217

    
1218

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

    
1223

    
1224

    
1225

    
1226

    
1227

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

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

    
1239

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

    
1244

    
1245

    
1246

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

    
1251

    
1252

    
1253

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

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

    
1269

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

    
1274

    
1275

    
1276

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

    
1281

    
1282

    
1283

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

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

    
1295

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

    
1300

    
1301

    
1302

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

    
1307

    
1308

    
1309

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

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

    
1330

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

    
1335

    
1336

    
1337

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

    
1342

    
1343

    
1344

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

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

    
1358

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

    
1363

    
1364

    
1365

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

    
1370

    
1371

    
1372

    
1373

    
1374

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

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

    
1383

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

    
1388

    
1389

    
1390

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

    
1395

    
1396

    
1397

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

    
1402

    
1403

    
1404

    
1405

    
1406

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

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

    
1419

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

    
1424

    
1425

    
1426

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

    
1431

    
1432

    
1433

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

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

    
1447

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

    
1452

    
1453

    
1454

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

    
1459

    
1460

    
1461

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

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

    
1472

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

    
1477

    
1478

    
1479

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

    
1484

    
1485

    
1486

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

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

    
1500

    
1501

    
1502

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

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

    
1512

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

    
1517

    
1518

    
1519

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

    
1524

    
1525

    
1526

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

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

    
1538

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

    
1543

    
1544

    
1545

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

    
1550

    
1551

    
1552

    
1553

    
1554

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

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

    
1572

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

    
1577

    
1578

    
1579

    
1580
--
1581
-- Name: plantobservation_plantobservation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1582
--
1583

    
1584

    
1585

    
1586

    
1587
--
1588
-- Name: plantobservation_plantobservation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1589
--
1590

    
1591

    
1592

    
1593

    
1594
--
1595
-- Name: plantstatus; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1596
--
1597

    
1598
CREATE TABLE plantstatus (
1599
    plantstatus_id int(11) NOT NULL,
1600
    plantconcept_id int(11) NOT NULL,
1601
    party_id int(11),
1602
    plantconceptstatus text DEFAULT 'undetermined' NOT NULL,
1603
    reference_id int(11),
1604
    plantpartycomments text,
1605
    startdate timestamp NULL,
1606
    stopdate timestamp NULL,
1607
    accessioncode text
1608
);
1609

    
1610

    
1611
--
1612
-- Name: plantstatus_plantstatus_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1613
--
1614

    
1615

    
1616

    
1617

    
1618
--
1619
-- Name: plantstatus_plantstatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1620
--
1621

    
1622

    
1623

    
1624

    
1625
--
1626
-- Name: plantusage; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1627
--
1628

    
1629
CREATE TABLE plantusage (
1630
    plantusage_id int(11) NOT NULL,
1631
    plantname_id int(11) NOT NULL,
1632
    plantconcept_id int(11),
1633
    plantnamestatus text,
1634
    plantname text,
1635
    classsystem text,
1636
    acceptedsynonym text,
1637
    party_id int(11),
1638
    plantstatus_id int(11),
1639
    usagestart timestamp NULL,
1640
    usagestop timestamp NULL
1641
);
1642

    
1643

    
1644
--
1645
-- Name: plantusage_plantusage_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1646
--
1647

    
1648

    
1649

    
1650

    
1651
--
1652
-- Name: plantusage_plantusage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1653
--
1654

    
1655

    
1656

    
1657

    
1658
--
1659
-- Name: project; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1660
--
1661

    
1662
CREATE TABLE project (
1663
    project_id int(11) NOT NULL,
1664
    datasource_id int(11) NOT NULL,
1665
    sourceaccessioncode text,
1666
    projectname text NOT NULL,
1667
    projectdescription text,
1668
    startdate timestamp NULL,
1669
    stopdate timestamp NULL,
1670
    d_obscount int(11),
1671
    d_lastlocationaddeddate timestamp NULL,
1672
    accessioncode text
1673
);
1674

    
1675

    
1676
--
1677
-- Name: project_project_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1678
--
1679

    
1680

    
1681

    
1682

    
1683
--
1684
-- Name: project_project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1685
--
1686

    
1687

    
1688

    
1689

    
1690
--
1691
-- Name: projectcontributor; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1692
--
1693

    
1694
CREATE TABLE projectcontributor (
1695
    projectcontributor_id int(11) NOT NULL,
1696
    project_id int(11) NOT NULL,
1697
    party_id int(11) NOT NULL,
1698
    role text,
1699
    surname text,
1700
    cheatrole text
1701
);
1702

    
1703

    
1704
--
1705
-- Name: projectcontributor_projectcontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1706
--
1707

    
1708

    
1709

    
1710

    
1711
--
1712
-- Name: projectcontributor_projectcontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1713
--
1714

    
1715

    
1716

    
1717

    
1718
--
1719
-- Name: reference; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1720
--
1721

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

    
1752

    
1753
--
1754
-- Name: reference_reference_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1755
--
1756

    
1757

    
1758

    
1759

    
1760
--
1761
-- Name: reference_reference_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1762
--
1763

    
1764

    
1765

    
1766

    
1767
--
1768
-- Name: referencealtident; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1769
--
1770

    
1771
CREATE TABLE referencealtident (
1772
    referencealtident_id int(11) NOT NULL,
1773
    reference_id int(11) NOT NULL,
1774
    system text,
1775
    identifier text NOT NULL
1776
);
1777

    
1778

    
1779
--
1780
-- Name: referencealtident_referencealtident_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1781
--
1782

    
1783

    
1784

    
1785

    
1786
--
1787
-- Name: referencealtident_referencealtident_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1788
--
1789

    
1790

    
1791

    
1792

    
1793
--
1794
-- Name: referencecontributor; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1795
--
1796

    
1797
CREATE TABLE referencecontributor (
1798
    referencecontributor_id int(11) NOT NULL,
1799
    reference_id int(11) NOT NULL,
1800
    referenceparty_id int(11) NOT NULL,
1801
    roletype text,
1802
    `position` int(11)
1803
);
1804

    
1805

    
1806
--
1807
-- Name: referencecontributor_referencecontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1808
--
1809

    
1810

    
1811

    
1812

    
1813
--
1814
-- Name: referencecontributor_referencecontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1815
--
1816

    
1817

    
1818

    
1819

    
1820
--
1821
-- Name: referencejournal; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1822
--
1823

    
1824
CREATE TABLE referencejournal (
1825
    referencejournal_id int(11) NOT NULL,
1826
    journal text NOT NULL,
1827
    issn text,
1828
    abbreviation text,
1829
    accessioncode text
1830
);
1831

    
1832

    
1833
--
1834
-- Name: referencejournal_referencejournal_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1835
--
1836

    
1837

    
1838

    
1839

    
1840
--
1841
-- Name: referencejournal_referencejournal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1842
--
1843

    
1844

    
1845

    
1846

    
1847
--
1848
-- Name: referenceparty; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1849
--
1850

    
1851
CREATE TABLE referenceparty (
1852
    referenceparty_id int(11) NOT NULL,
1853
    type text,
1854
    positionname text,
1855
    salutation text,
1856
    givenname text,
1857
    surname text,
1858
    suffix text,
1859
    organizationname text,
1860
    currentparty_id int(11),
1861
    accessioncode text
1862
);
1863

    
1864

    
1865
--
1866
-- Name: referenceparty_referenceparty_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1867
--
1868

    
1869

    
1870

    
1871

    
1872
--
1873
-- Name: referenceparty_referenceparty_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1874
--
1875

    
1876

    
1877

    
1878

    
1879
--
1880
-- Name: revision; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1881
--
1882

    
1883
CREATE TABLE revision (
1884
    revision_id int(11) NOT NULL,
1885
    tablename text NOT NULL,
1886
    tableattribute text NOT NULL,
1887
    tablerecord int(11) NOT NULL,
1888
    previousvaluetext text NOT NULL,
1889
    previousvaluetype text NOT NULL,
1890
    previousrevision_id int(11),
1891
    revisiondate timestamp NOT NULL
1892
);
1893

    
1894

    
1895
--
1896
-- Name: revision_revision_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1897
--
1898

    
1899

    
1900

    
1901

    
1902
--
1903
-- Name: revision_revision_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1904
--
1905

    
1906

    
1907

    
1908

    
1909
--
1910
-- Name: soilobs; Type: TABLE; Schema: public; Owner: -; Tablespace: 
1911
--
1912

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

    
1941

    
1942
--
1943
-- Name: COLUMN soilobs.organic; Type: COMMENT; Schema: public; Owner: -
1944
--
1945

    
1946

    
1947

    
1948

    
1949
--
1950
-- Name: COLUMN soilobs.sand; Type: COMMENT; Schema: public; Owner: -
1951
--
1952

    
1953

    
1954

    
1955

    
1956
--
1957
-- Name: COLUMN soilobs.silt; Type: COMMENT; Schema: public; Owner: -
1958
--
1959

    
1960

    
1961

    
1962

    
1963
--
1964
-- Name: COLUMN soilobs.clay; Type: COMMENT; Schema: public; Owner: -
1965
--
1966

    
1967

    
1968

    
1969

    
1970
--
1971
-- Name: COLUMN soilobs.coarse; Type: COMMENT; Schema: public; Owner: -
1972
--
1973

    
1974

    
1975

    
1976

    
1977
--
1978
-- Name: COLUMN soilobs.acidity; Type: COMMENT; Schema: public; Owner: -
1979
--
1980

    
1981

    
1982

    
1983

    
1984
--
1985
-- Name: COLUMN soilobs.basesaturation; Type: COMMENT; Schema: public; Owner: -
1986
--
1987

    
1988

    
1989

    
1990

    
1991
--
1992
-- Name: COLUMN soilobs.carbon; Type: COMMENT; Schema: public; Owner: -
1993
--
1994

    
1995

    
1996

    
1997

    
1998
--
1999
-- Name: COLUMN soilobs.phosphorus; Type: COMMENT; Schema: public; Owner: -
2000
--
2001

    
2002

    
2003

    
2004

    
2005
--
2006
-- Name: COLUMN soilobs.potassium; Type: COMMENT; Schema: public; Owner: -
2007
--
2008

    
2009

    
2010

    
2011

    
2012
--
2013
-- Name: COLUMN soilobs.magnesium; Type: COMMENT; Schema: public; Owner: -
2014
--
2015

    
2016

    
2017

    
2018

    
2019
--
2020
-- Name: COLUMN soilobs.nitrogen; Type: COMMENT; Schema: public; Owner: -
2021
--
2022

    
2023

    
2024

    
2025

    
2026
--
2027
-- Name: COLUMN soilobs.calcium; Type: COMMENT; Schema: public; Owner: -
2028
--
2029

    
2030

    
2031

    
2032

    
2033
--
2034
-- Name: COLUMN soilobs.sodium; Type: COMMENT; Schema: public; Owner: -
2035
--
2036

    
2037

    
2038

    
2039

    
2040
--
2041
-- Name: soilobs_soilobs_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2042
--
2043

    
2044

    
2045

    
2046

    
2047
--
2048
-- Name: soilobs_soilobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2049
--
2050

    
2051

    
2052

    
2053

    
2054
--
2055
-- Name: soiltaxon; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2056
--
2057

    
2058
CREATE TABLE soiltaxon (
2059
    soiltaxon_id int(11) NOT NULL,
2060
    soilcode text,
2061
    soilname text,
2062
    soillevel int(11),
2063
    soilparent_id int(11),
2064
    soilframework text,
2065
    accessioncode text
2066
);
2067

    
2068

    
2069
--
2070
-- Name: soiltaxon_soiltaxon_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2071
--
2072

    
2073

    
2074

    
2075

    
2076
--
2077
-- Name: soiltaxon_soiltaxon_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2078
--
2079

    
2080

    
2081

    
2082

    
2083

    
2084

    
2085
--
2086
-- Name: specimen; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2087
--
2088

    
2089
CREATE TABLE specimen (
2090
    specimen_id int(11) NOT NULL
2091
);
2092

    
2093

    
2094
--
2095
-- Name: TABLE specimen; Type: COMMENT; Schema: public; Owner: -
2096
--
2097

    
2098

    
2099

    
2100

    
2101
--
2102
-- Name: specimen_specimen_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2103
--
2104

    
2105

    
2106

    
2107

    
2108
--
2109
-- Name: specimen_specimen_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2110
--
2111

    
2112

    
2113

    
2114

    
2115
--
2116
-- Name: taxonoccurrence; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2117
--
2118

    
2119
CREATE TABLE taxonoccurrence (
2120
    taxonoccurrence_id int(11) NOT NULL,
2121
    datasource_id int(11) NOT NULL,
2122
    sourceaccessioncode text,
2123
    locationevent_id int(11),
2124
    verbatimcollectorname text,
2125
    growthform text,
2126
    iscultivated int(1),
2127
    cultivatedbasis text,
2128
    isnative int(1),
2129
    accessioncode text
2130
);
2131

    
2132

    
2133
--
2134
-- Name: TABLE taxonoccurrence; Type: COMMENT; Schema: public; Owner: -
2135
--
2136

    
2137

    
2138

    
2139

    
2140
--
2141
-- Name: COLUMN taxonoccurrence.iscultivated; Type: COMMENT; Schema: public; Owner: -
2142
--
2143

    
2144

    
2145

    
2146

    
2147
--
2148
-- Name: COLUMN taxonoccurrence.cultivatedbasis; Type: COMMENT; Schema: public; Owner: -
2149
--
2150

    
2151

    
2152

    
2153

    
2154
--
2155
-- Name: COLUMN taxonoccurrence.isnative; Type: COMMENT; Schema: public; Owner: -
2156
--
2157

    
2158

    
2159

    
2160

    
2161
--
2162
-- Name: taxonoccurrence_taxonoccurrence_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2163
--
2164

    
2165

    
2166

    
2167

    
2168
--
2169
-- Name: taxonoccurrence_taxonoccurrence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2170
--
2171

    
2172

    
2173

    
2174

    
2175

    
2176

    
2177
--
2178
-- Name: specimenreplicate; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2179
--
2180

    
2181
CREATE TABLE specimenreplicate (
2182
    taxonoccurrence_id int(11) NOT NULL,
2183
    plantobservation_id int(11),
2184
    institution_id int(11),
2185
    collectioncode_dwc text,
2186
    catalognumber_dwc text,
2187
    collectionnumber text,
2188
    collectiondate timestamp NULL,
2189
    description text,
2190
    specimen_id int(11)
2191
)
2192
;
2193
ALTER TABLE specimenreplicate
2194
    ADD CONSTRAINT specimenreplicate_taxonoccurrence_id FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
2195

    
2196

    
2197

    
2198
--
2199
-- Name: TABLE specimenreplicate; Type: COMMENT; Schema: public; Owner: -
2200
--
2201

    
2202

    
2203

    
2204

    
2205
--
2206
-- Name: COLUMN specimenreplicate.institution_id; Type: COMMENT; Schema: public; Owner: -
2207
--
2208

    
2209

    
2210

    
2211

    
2212
--
2213
-- Name: COLUMN specimenreplicate.collectioncode_dwc; Type: COMMENT; Schema: public; Owner: -
2214
--
2215

    
2216

    
2217

    
2218

    
2219
--
2220
-- Name: COLUMN specimenreplicate.collectionnumber; Type: COMMENT; Schema: public; Owner: -
2221
--
2222

    
2223

    
2224

    
2225

    
2226
--
2227
-- Name: stemobservation; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2228
--
2229

    
2230
CREATE TABLE stemobservation (
2231
    stemobservation_id int(11) NOT NULL,
2232
    datasource_id int(11) NOT NULL,
2233
    sourceaccessioncode text,
2234
    plantobservation_id int(11) NOT NULL,
2235
    authorstemcode text,
2236
    xposition double precision,
2237
    yposition double precision,
2238
    diameterbreastheight double precision,
2239
    basaldiameter double precision,
2240
    diameteraccuracy double precision,
2241
    height double precision,
2242
    heightfirstbranch double precision,
2243
    heightaccuracy double precision,
2244
    health text,
2245
    age double precision,
2246
    accessioncode text
2247
);
2248

    
2249

    
2250
--
2251
-- Name: TABLE stemobservation; Type: COMMENT; Schema: public; Owner: -
2252
--
2253

    
2254

    
2255

    
2256

    
2257
--
2258
-- Name: stemobservation_stemobservation_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2259
--
2260

    
2261

    
2262

    
2263

    
2264
--
2265
-- Name: stemobservation_stemobservation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2266
--
2267

    
2268

    
2269

    
2270

    
2271

    
2272

    
2273
--
2274
-- Name: stemtag; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2275
--
2276

    
2277
CREATE TABLE stemtag (
2278
    stemtag_id int(11) NOT NULL,
2279
    stemobservation_id int(11) NOT NULL,
2280
    tag text NOT NULL,
2281
    iscurrent int(1) DEFAULT true NOT NULL
2282
);
2283

    
2284

    
2285
--
2286
-- Name: stemtag_stemtag_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2287
--
2288

    
2289

    
2290

    
2291

    
2292
--
2293
-- Name: stemtag_stemtag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2294
--
2295

    
2296

    
2297

    
2298

    
2299

    
2300

    
2301
--
2302
-- Name: stratum; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2303
--
2304

    
2305
CREATE TABLE stratum (
2306
    stratum_id int(11) NOT NULL,
2307
    locationevent_id int(11) NOT NULL,
2308
    stratumheight double precision,
2309
    stratumbase double precision,
2310
    stratumcover double precision,
2311
    area double precision,
2312
    method_id int(11)
2313
);
2314

    
2315

    
2316
--
2317
-- Name: stratum_stratum_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2318
--
2319

    
2320

    
2321

    
2322

    
2323
--
2324
-- Name: stratum_stratum_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2325
--
2326

    
2327

    
2328

    
2329

    
2330
--
2331
-- Name: taxonalt; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2332
--
2333

    
2334
CREATE TABLE taxonalt (
2335
    taxonalt_id int(11) NOT NULL,
2336
    taxondetermination_id int(11) NOT NULL,
2337
    plantconcept_id int(11) NOT NULL,
2338
    taxonaltfit text,
2339
    taxonaltconfidence text,
2340
    taxonaltnotes text
2341
);
2342

    
2343

    
2344
--
2345
-- Name: taxonalt_taxonalt_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2346
--
2347

    
2348

    
2349

    
2350

    
2351
--
2352
-- Name: taxonalt_taxonalt_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2353
--
2354

    
2355

    
2356

    
2357

    
2358
--
2359
-- Name: taxondetermination; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2360
--
2361

    
2362
CREATE TABLE taxondetermination (
2363
    taxondetermination_id int(11) NOT NULL,
2364
    taxonoccurrence_id int(11) NOT NULL,
2365
    plantconcept_id int(11) NOT NULL,
2366
    party_id int(11),
2367
    role text NOT NULL,
2368
    determinationtype text,
2369
    reference_id int(11),
2370
    isoriginal int(1) DEFAULT false NOT NULL,
2371
    iscurrent int(1) DEFAULT false NOT NULL,
2372
    taxonfit text,
2373
    taxonconfidence text,
2374
    grouptype text,
2375
    notes text,
2376
    notespublic int(1),
2377
    notesmgt int(1),
2378
    revisions int(1),
2379
    determinationdate timestamp NULL,
2380
    accessioncode text
2381
);
2382

    
2383

    
2384
--
2385
-- Name: TABLE taxondetermination; Type: COMMENT; Schema: public; Owner: -
2386
--
2387

    
2388

    
2389

    
2390

    
2391
--
2392
-- Name: taxondetermination_taxondetermination_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2393
--
2394

    
2395

    
2396

    
2397

    
2398
--
2399
-- Name: taxondetermination_taxondetermination_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2400
--
2401

    
2402

    
2403

    
2404

    
2405
--
2406
-- Name: telephone; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2407
--
2408

    
2409
CREATE TABLE telephone (
2410
    telephone_id int(11) NOT NULL,
2411
    party_id int(11) NOT NULL,
2412
    phonenumber text NOT NULL,
2413
    phonetype text NOT NULL
2414
);
2415

    
2416

    
2417
--
2418
-- Name: telephone_telephone_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2419
--
2420

    
2421

    
2422

    
2423

    
2424
--
2425
-- Name: telephone_telephone_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2426
--
2427

    
2428

    
2429

    
2430

    
2431

    
2432

    
2433
--
2434
-- Name: trait; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2435
--
2436

    
2437
CREATE TABLE trait (
2438
    trait_id int(11) NOT NULL,
2439
    stemobservation_id int(11) NOT NULL,
2440
    type text NOT NULL,
2441
    value text
2442
);
2443

    
2444

    
2445
--
2446
-- Name: trait_trait_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2447
--
2448

    
2449

    
2450

    
2451

    
2452
--
2453
-- Name: trait_trait_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2454
--
2455

    
2456

    
2457

    
2458

    
2459

    
2460

    
2461
--
2462
-- Name: userdefined; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2463
--
2464

    
2465
CREATE TABLE userdefined (
2466
    userdefined_id int(11) NOT NULL,
2467
    userdefinedname text NOT NULL,
2468
    userdefinedmetadata text,
2469
    userdefinedcategory text,
2470
    userdefinedtype text DEFAULT 'text' NOT NULL,
2471
    tablename text NOT NULL,
2472
    accessioncode text
2473
);
2474

    
2475

    
2476
--
2477
-- Name: userdefined_userdefined_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2478
--
2479

    
2480

    
2481

    
2482

    
2483
--
2484
-- Name: userdefined_userdefined_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2485
--
2486

    
2487

    
2488

    
2489

    
2490

    
2491

    
2492
--
2493
-- Name: voucher; Type: TABLE; Schema: public; Owner: -; Tablespace: 
2494
--
2495

    
2496
CREATE TABLE voucher (
2497
    voucher_id int(11) NOT NULL,
2498
    taxonoccurrence_id int(11) NOT NULL,
2499
    specimenreplicate_id int(11) NOT NULL,
2500
    accessioncode text
2501
);
2502

    
2503

    
2504
--
2505
-- Name: voucher_voucher_id_seq; Type: SEQUENCE; Schema: public; Owner: -
2506
--
2507

    
2508

    
2509

    
2510

    
2511
--
2512
-- Name: voucher_voucher_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
2513
--
2514

    
2515

    
2516

    
2517

    
2518
--
2519
-- Name: address_id; Type: DEFAULT; Schema: public; Owner: -
2520
--
2521

    
2522

    
2523

    
2524

    
2525
--
2526
-- Name: aggregateoccurrence_id; Type: DEFAULT; Schema: public; Owner: -
2527
--
2528

    
2529

    
2530

    
2531

    
2532
--
2533
-- Name: classcontributor_id; Type: DEFAULT; Schema: public; Owner: -
2534
--
2535

    
2536

    
2537

    
2538

    
2539
--
2540
-- Name: commclass_id; Type: DEFAULT; Schema: public; Owner: -
2541
--
2542

    
2543

    
2544

    
2545

    
2546
--
2547
-- Name: commconcept_id; Type: DEFAULT; Schema: public; Owner: -
2548
--
2549

    
2550

    
2551

    
2552

    
2553
--
2554
-- Name: commcorrelation_id; Type: DEFAULT; Schema: public; Owner: -
2555
--
2556

    
2557

    
2558

    
2559

    
2560
--
2561
-- Name: commdetermination_id; Type: DEFAULT; Schema: public; Owner: -
2562
--
2563

    
2564

    
2565

    
2566

    
2567
--
2568
-- Name: commlineage_id; Type: DEFAULT; Schema: public; Owner: -
2569
--
2570

    
2571

    
2572

    
2573

    
2574
--
2575
-- Name: commname_id; Type: DEFAULT; Schema: public; Owner: -
2576
--
2577

    
2578

    
2579

    
2580

    
2581
--
2582
-- Name: commstatus_id; Type: DEFAULT; Schema: public; Owner: -
2583
--
2584

    
2585

    
2586

    
2587

    
2588
--
2589
-- Name: commusage_id; Type: DEFAULT; Schema: public; Owner: -
2590
--
2591

    
2592

    
2593

    
2594

    
2595
--
2596
-- Name: coverindex_id; Type: DEFAULT; Schema: public; Owner: -
2597
--
2598

    
2599

    
2600

    
2601

    
2602
--
2603
-- Name: covermethod_id; Type: DEFAULT; Schema: public; Owner: -
2604
--
2605

    
2606

    
2607

    
2608

    
2609
--
2610
-- Name: definedvalue_id; Type: DEFAULT; Schema: public; Owner: -
2611
--
2612

    
2613

    
2614

    
2615

    
2616
--
2617
-- Name: disturbanceobs_id; Type: DEFAULT; Schema: public; Owner: -
2618
--
2619

    
2620

    
2621

    
2622

    
2623
--
2624
-- Name: graphic_id; Type: DEFAULT; Schema: public; Owner: -
2625
--
2626

    
2627

    
2628

    
2629

    
2630
--
2631
-- Name: location_id; Type: DEFAULT; Schema: public; Owner: -
2632
--
2633

    
2634

    
2635

    
2636

    
2637
--
2638
-- Name: locationdetermination_id; Type: DEFAULT; Schema: public; Owner: -
2639
--
2640

    
2641

    
2642

    
2643

    
2644
--
2645
-- Name: locationevent_id; Type: DEFAULT; Schema: public; Owner: -
2646
--
2647

    
2648

    
2649

    
2650

    
2651
--
2652
-- Name: locationeventcontributor_id; Type: DEFAULT; Schema: public; Owner: -
2653
--
2654

    
2655

    
2656

    
2657

    
2658
--
2659
-- Name: locationeventsynonym_id; Type: DEFAULT; Schema: public; Owner: -
2660
--
2661

    
2662

    
2663

    
2664

    
2665
--
2666
-- Name: method_id; Type: DEFAULT; Schema: public; Owner: -
2667
--
2668

    
2669

    
2670

    
2671

    
2672
--
2673
-- Name: methodtaxonclass_id; Type: DEFAULT; Schema: public; Owner: -
2674
--
2675

    
2676

    
2677

    
2678

    
2679
--
2680
-- Name: namedplace_id; Type: DEFAULT; Schema: public; Owner: -
2681
--
2682

    
2683

    
2684

    
2685

    
2686
--
2687
-- Name: namedplacecorrelation_id; Type: DEFAULT; Schema: public; Owner: -
2688
--
2689

    
2690

    
2691

    
2692

    
2693
--
2694
-- Name: note_id; Type: DEFAULT; Schema: public; Owner: -
2695
--
2696

    
2697

    
2698

    
2699

    
2700
--
2701
-- Name: notelink_id; Type: DEFAULT; Schema: public; Owner: -
2702
--
2703

    
2704

    
2705

    
2706

    
2707
--
2708
-- Name: party_id; Type: DEFAULT; Schema: public; Owner: -
2709
--
2710

    
2711

    
2712

    
2713

    
2714
--
2715
-- Name: partymember_id; Type: DEFAULT; Schema: public; Owner: -
2716
--
2717

    
2718

    
2719

    
2720

    
2721
--
2722
-- Name: plant_id; Type: DEFAULT; Schema: public; Owner: -
2723
--
2724

    
2725

    
2726

    
2727

    
2728
--
2729
-- Name: plantconcept_id; Type: DEFAULT; Schema: public; Owner: -
2730
--
2731

    
2732

    
2733

    
2734

    
2735
--
2736
-- Name: plantcorrelation_id; Type: DEFAULT; Schema: public; Owner: -
2737
--
2738

    
2739

    
2740

    
2741

    
2742
--
2743
-- Name: plantlineage_id; Type: DEFAULT; Schema: public; Owner: -
2744
--
2745

    
2746

    
2747

    
2748

    
2749
--
2750
-- Name: plantname_id; Type: DEFAULT; Schema: public; Owner: -
2751
--
2752

    
2753

    
2754

    
2755

    
2756
--
2757
-- Name: plantnamescope_id; Type: DEFAULT; Schema: public; Owner: -
2758
--
2759

    
2760

    
2761

    
2762

    
2763
--
2764
-- Name: plantobservation_id; Type: DEFAULT; Schema: public; Owner: -
2765
--
2766

    
2767

    
2768

    
2769

    
2770
--
2771
-- Name: plantstatus_id; Type: DEFAULT; Schema: public; Owner: -
2772
--
2773

    
2774

    
2775

    
2776

    
2777
--
2778
-- Name: plantusage_id; Type: DEFAULT; Schema: public; Owner: -
2779
--
2780

    
2781

    
2782

    
2783

    
2784
--
2785
-- Name: project_id; Type: DEFAULT; Schema: public; Owner: -
2786
--
2787

    
2788

    
2789

    
2790

    
2791
--
2792
-- Name: projectcontributor_id; Type: DEFAULT; Schema: public; Owner: -
2793
--
2794

    
2795

    
2796

    
2797

    
2798
--
2799
-- Name: reference_id; Type: DEFAULT; Schema: public; Owner: -
2800
--
2801

    
2802

    
2803

    
2804

    
2805
--
2806
-- Name: referencealtident_id; Type: DEFAULT; Schema: public; Owner: -
2807
--
2808

    
2809

    
2810

    
2811

    
2812
--
2813
-- Name: referencecontributor_id; Type: DEFAULT; Schema: public; Owner: -
2814
--
2815

    
2816

    
2817

    
2818

    
2819
--
2820
-- Name: referencejournal_id; Type: DEFAULT; Schema: public; Owner: -
2821
--
2822

    
2823

    
2824

    
2825

    
2826
--
2827
-- Name: referenceparty_id; Type: DEFAULT; Schema: public; Owner: -
2828
--
2829

    
2830

    
2831

    
2832

    
2833
--
2834
-- Name: revision_id; Type: DEFAULT; Schema: public; Owner: -
2835
--
2836

    
2837

    
2838

    
2839

    
2840
--
2841
-- Name: soilobs_id; Type: DEFAULT; Schema: public; Owner: -
2842
--
2843

    
2844

    
2845

    
2846

    
2847
--
2848
-- Name: soiltaxon_id; Type: DEFAULT; Schema: public; Owner: -
2849
--
2850

    
2851

    
2852

    
2853

    
2854
--
2855
-- Name: specimen_id; Type: DEFAULT; Schema: public; Owner: -
2856
--
2857

    
2858

    
2859

    
2860

    
2861
--
2862
-- Name: stemobservation_id; Type: DEFAULT; Schema: public; Owner: -
2863
--
2864

    
2865

    
2866

    
2867

    
2868
--
2869
-- Name: stemtag_id; Type: DEFAULT; Schema: public; Owner: -
2870
--
2871

    
2872

    
2873

    
2874

    
2875
--
2876
-- Name: stratum_id; Type: DEFAULT; Schema: public; Owner: -
2877
--
2878

    
2879

    
2880

    
2881

    
2882
--
2883
-- Name: taxonalt_id; Type: DEFAULT; Schema: public; Owner: -
2884
--
2885

    
2886

    
2887

    
2888

    
2889
--
2890
-- Name: taxondetermination_id; Type: DEFAULT; Schema: public; Owner: -
2891
--
2892

    
2893

    
2894

    
2895

    
2896
--
2897
-- Name: taxonoccurrence_id; Type: DEFAULT; Schema: public; Owner: -
2898
--
2899

    
2900

    
2901

    
2902

    
2903
--
2904
-- Name: telephone_id; Type: DEFAULT; Schema: public; Owner: -
2905
--
2906

    
2907

    
2908

    
2909

    
2910
--
2911
-- Name: trait_id; Type: DEFAULT; Schema: public; Owner: -
2912
--
2913

    
2914

    
2915

    
2916

    
2917
--
2918
-- Name: userdefined_id; Type: DEFAULT; Schema: public; Owner: -
2919
--
2920

    
2921

    
2922

    
2923

    
2924
--
2925
-- Name: voucher_id; Type: DEFAULT; Schema: public; Owner: -
2926
--
2927

    
2928

    
2929

    
2930

    
2931
--
2932
-- Name: address_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2933
--
2934

    
2935
ALTER TABLE address
2936
    ADD CONSTRAINT address_pkey PRIMARY KEY (address_id);
2937

    
2938

    
2939
--
2940
-- Name: aggregateoccurrence_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2941
--
2942

    
2943
ALTER TABLE aggregateoccurrence
2944
    ADD CONSTRAINT aggregateoccurrence_pkey PRIMARY KEY (aggregateoccurrence_id);
2945

    
2946

    
2947
--
2948
-- Name: classcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2949
--
2950

    
2951
ALTER TABLE classcontributor
2952
    ADD CONSTRAINT classcontributor_pkey PRIMARY KEY (classcontributor_id);
2953

    
2954

    
2955
--
2956
-- Name: commclass_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2957
--
2958

    
2959
ALTER TABLE commclass
2960
    ADD CONSTRAINT commclass_pkey PRIMARY KEY (commclass_id);
2961

    
2962

    
2963
--
2964
-- Name: commconcept_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2965
--
2966

    
2967
ALTER TABLE commconcept
2968
    ADD CONSTRAINT commconcept_pkey PRIMARY KEY (commconcept_id);
2969

    
2970

    
2971
--
2972
-- Name: commconcept_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2973
--
2974

    
2975
ALTER TABLE commconcept
2976
    ADD CONSTRAINT commconcept_unique UNIQUE (commname_id);
2977

    
2978

    
2979
--
2980
-- Name: commcorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2981
--
2982

    
2983
ALTER TABLE commcorrelation
2984
    ADD CONSTRAINT commcorrelation_pkey PRIMARY KEY (commcorrelation_id);
2985

    
2986

    
2987
--
2988
-- Name: commdetermination_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2989
--
2990

    
2991
ALTER TABLE commdetermination
2992
    ADD CONSTRAINT commdetermination_pkey PRIMARY KEY (commdetermination_id);
2993

    
2994

    
2995
--
2996
-- Name: commdetermination_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
2997
--
2998

    
2999
ALTER TABLE commdetermination
3000
    ADD CONSTRAINT commdetermination_unique UNIQUE (commclass_id, commconcept_id);
3001

    
3002

    
3003
--
3004
-- Name: commlineage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3005
--
3006

    
3007
ALTER TABLE commlineage
3008
    ADD CONSTRAINT commlineage_pkey PRIMARY KEY (commlineage_id);
3009

    
3010

    
3011
--
3012
-- Name: commname_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3013
--
3014

    
3015
ALTER TABLE commname
3016
    ADD CONSTRAINT commname_pkey PRIMARY KEY (commname_id);
3017

    
3018

    
3019
--
3020
-- Name: commname_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3021
--
3022

    
3023
ALTER TABLE commname
3024
    ADD CONSTRAINT commname_unique UNIQUE (commname);
3025

    
3026

    
3027
--
3028
-- Name: commstatus_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3029
--
3030

    
3031
ALTER TABLE commstatus
3032
    ADD CONSTRAINT commstatus_pkey PRIMARY KEY (commstatus_id);
3033

    
3034

    
3035
--
3036
-- Name: commusage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3037
--
3038

    
3039
ALTER TABLE commusage
3040
    ADD CONSTRAINT commusage_pkey PRIMARY KEY (commusage_id);
3041

    
3042

    
3043
--
3044
-- Name: coverindex_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3045
--
3046

    
3047
ALTER TABLE coverindex
3048
    ADD CONSTRAINT coverindex_pkey PRIMARY KEY (coverindex_id);
3049

    
3050

    
3051
--
3052
-- Name: covermethod_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3053
--
3054

    
3055
ALTER TABLE covermethod
3056
    ADD CONSTRAINT covermethod_pkey PRIMARY KEY (covermethod_id);
3057

    
3058

    
3059
--
3060
-- Name: definedvalue_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3061
--
3062

    
3063
ALTER TABLE definedvalue
3064
    ADD CONSTRAINT definedvalue_pkey PRIMARY KEY (definedvalue_id);
3065

    
3066

    
3067
--
3068
-- Name: definedvalue_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3069
--
3070

    
3071
ALTER TABLE definedvalue
3072
    ADD CONSTRAINT definedvalue_unique UNIQUE (userdefined_id, tablerecord_id);
3073

    
3074

    
3075
--
3076
-- Name: disturbanceobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3077
--
3078

    
3079
ALTER TABLE disturbanceobs
3080
    ADD CONSTRAINT disturbanceobs_pkey PRIMARY KEY (disturbanceobs_id);
3081

    
3082

    
3083
--
3084
-- Name: graphic_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3085
--
3086

    
3087
ALTER TABLE graphic
3088
    ADD CONSTRAINT graphic_pkey PRIMARY KEY (graphic_id);
3089

    
3090

    
3091
--
3092
-- Name: location_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3093
--
3094

    
3095
ALTER TABLE location
3096
    ADD CONSTRAINT location_pkey PRIMARY KEY (location_id);
3097

    
3098

    
3099
--
3100
-- Name: location_unique_subplot_coords; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3101
--
3102

    
3103
ALTER TABLE location
3104
    ADD CONSTRAINT location_unique_subplot_coords UNIQUE (parent_id, sublocationxposition, sublocationyposition);
3105

    
3106

    
3107
--
3108
-- Name: locationdetermination_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3109
--
3110

    
3111
ALTER TABLE locationdetermination
3112
    ADD CONSTRAINT locationdetermination_pkey PRIMARY KEY (locationdetermination_id);
3113

    
3114

    
3115
--
3116
-- Name: locationdetermination_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3117
--
3118

    
3119
ALTER TABLE locationdetermination
3120
    ADD CONSTRAINT locationdetermination_unique UNIQUE (location_id, namedplace_id);
3121

    
3122

    
3123
--
3124
-- Name: locationevent_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3125
--
3126

    
3127
ALTER TABLE locationevent
3128
    ADD CONSTRAINT locationevent_pkey PRIMARY KEY (locationevent_id);
3129

    
3130

    
3131
--
3132
-- Name: locationeventcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3133
--
3134

    
3135
ALTER TABLE locationeventcontributor
3136
    ADD CONSTRAINT locationeventcontributor_pkey PRIMARY KEY (locationeventcontributor_id);
3137

    
3138

    
3139
--
3140
-- Name: locationeventsynonym_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3141
--
3142

    
3143
ALTER TABLE locationeventsynonym
3144
    ADD CONSTRAINT locationeventsynonym_pkey PRIMARY KEY (locationeventsynonym_id);
3145

    
3146

    
3147
--
3148
-- Name: method_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3149
--
3150

    
3151
ALTER TABLE method
3152
    ADD CONSTRAINT method_pkey PRIMARY KEY (method_id);
3153

    
3154

    
3155
--
3156
-- Name: methodtaxonclass_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3157
--
3158

    
3159
ALTER TABLE methodtaxonclass
3160
    ADD CONSTRAINT methodtaxonclass_pkey PRIMARY KEY (methodtaxonclass_id);
3161

    
3162

    
3163
--
3164
-- Name: methodtaxonclass_unique_description; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3165
--
3166

    
3167
ALTER TABLE methodtaxonclass
3168
    ADD CONSTRAINT methodtaxonclass_unique_description UNIQUE (method_id, taxonclass);
3169

    
3170

    
3171
--
3172
-- Name: methodtaxonclass_unique_plantconcept_id; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3173
--
3174

    
3175
ALTER TABLE methodtaxonclass
3176
    ADD CONSTRAINT methodtaxonclass_unique_plantconcept_id UNIQUE (method_id, plantconcept_id);
3177

    
3178

    
3179
--
3180
-- Name: namedplace_ancestor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3181
--
3182

    
3183
ALTER TABLE namedplace_ancestor
3184
    ADD CONSTRAINT namedplace_ancestor_pkey PRIMARY KEY (namedplace_id, ancestor_id);
3185

    
3186

    
3187
--
3188
-- Name: namedplace_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3189
--
3190

    
3191
ALTER TABLE namedplace
3192
    ADD CONSTRAINT namedplace_pkey PRIMARY KEY (namedplace_id);
3193

    
3194

    
3195
--
3196
-- Name: namedplacecorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3197
--
3198

    
3199
ALTER TABLE namedplacecorrelation
3200
    ADD CONSTRAINT namedplacecorrelation_pkey PRIMARY KEY (namedplacecorrelation_id);
3201

    
3202

    
3203
--
3204
-- Name: note_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3205
--
3206

    
3207
ALTER TABLE note
3208
    ADD CONSTRAINT note_pkey PRIMARY KEY (note_id);
3209

    
3210

    
3211
--
3212
-- Name: notelink_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3213
--
3214

    
3215
ALTER TABLE notelink
3216
    ADD CONSTRAINT notelink_pkey PRIMARY KEY (notelink_id);
3217

    
3218

    
3219
--
3220
-- Name: party_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3221
--
3222

    
3223
ALTER TABLE party
3224
    ADD CONSTRAINT party_pkey PRIMARY KEY (party_id);
3225

    
3226

    
3227
--
3228
-- Name: partymember_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3229
--
3230

    
3231
ALTER TABLE partymember
3232
    ADD CONSTRAINT partymember_pkey PRIMARY KEY (partymember_id);
3233

    
3234

    
3235
--
3236
-- Name: plant_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3237
--
3238

    
3239
ALTER TABLE plant
3240
    ADD CONSTRAINT plant_pkey PRIMARY KEY (plant_id);
3241

    
3242

    
3243
--
3244
-- Name: plantconcept_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3245
--
3246

    
3247
ALTER TABLE plantconcept
3248
    ADD CONSTRAINT plantconcept_pkey PRIMARY KEY (plantconcept_id);
3249

    
3250

    
3251
--
3252
-- Name: plantconcept_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3253
--
3254

    
3255
ALTER TABLE plantconcept
3256
    ADD CONSTRAINT plantconcept_unique UNIQUE (plantname_id);
3257

    
3258

    
3259
--
3260
-- Name: plantcorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3261
--
3262

    
3263
ALTER TABLE plantcorrelation
3264
    ADD CONSTRAINT plantcorrelation_pkey PRIMARY KEY (plantcorrelation_id);
3265

    
3266

    
3267
--
3268
-- Name: plantlineage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3269
--
3270

    
3271
ALTER TABLE plantlineage
3272
    ADD CONSTRAINT plantlineage_pkey PRIMARY KEY (plantlineage_id);
3273

    
3274

    
3275
--
3276
-- Name: plantname_ancestor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3277
--
3278

    
3279
ALTER TABLE plantname_ancestor
3280
    ADD CONSTRAINT plantname_ancestor_pkey PRIMARY KEY (plantname_id, ancestor_id);
3281

    
3282

    
3283
--
3284
-- Name: plantname_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3285
--
3286

    
3287
ALTER TABLE plantname
3288
    ADD CONSTRAINT plantname_pkey PRIMARY KEY (plantname_id);
3289

    
3290

    
3291
--
3292
-- Name: plantnamescope_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3293
--
3294

    
3295
ALTER TABLE plantnamescope
3296
    ADD CONSTRAINT plantnamescope_pkey PRIMARY KEY (plantnamescope_id);
3297

    
3298

    
3299
--
3300
-- Name: plantobservation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3301
--
3302

    
3303
ALTER TABLE plantobservation
3304
    ADD CONSTRAINT plantobservation_pkey PRIMARY KEY (plantobservation_id);
3305

    
3306

    
3307
--
3308
-- Name: plantstatus_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3309
--
3310

    
3311
ALTER TABLE plantstatus
3312
    ADD CONSTRAINT plantstatus_pkey PRIMARY KEY (plantstatus_id);
3313

    
3314

    
3315
--
3316
-- Name: plantstatus_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3317
--
3318

    
3319
ALTER TABLE plantstatus
3320
    ADD CONSTRAINT plantstatus_unique UNIQUE (plantconcept_id, party_id);
3321

    
3322

    
3323
--
3324
-- Name: plantusage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3325
--
3326

    
3327
ALTER TABLE plantusage
3328
    ADD CONSTRAINT plantusage_pkey PRIMARY KEY (plantusage_id);
3329

    
3330

    
3331
--
3332
-- Name: project_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3333
--
3334

    
3335
ALTER TABLE project
3336
    ADD CONSTRAINT project_pkey PRIMARY KEY (project_id);
3337

    
3338

    
3339
--
3340
-- Name: project_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3341
--
3342

    
3343
ALTER TABLE project
3344
    ADD CONSTRAINT project_unique UNIQUE (datasource_id, projectname);
3345

    
3346

    
3347
--
3348
-- Name: projectcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3349
--
3350

    
3351
ALTER TABLE projectcontributor
3352
    ADD CONSTRAINT projectcontributor_pkey PRIMARY KEY (projectcontributor_id);
3353

    
3354

    
3355
--
3356
-- Name: reference_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3357
--
3358

    
3359
ALTER TABLE reference
3360
    ADD CONSTRAINT reference_pkey PRIMARY KEY (reference_id);
3361

    
3362

    
3363
--
3364
-- Name: referencealtident_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3365
--
3366

    
3367
ALTER TABLE referencealtident
3368
    ADD CONSTRAINT referencealtident_pkey PRIMARY KEY (referencealtident_id);
3369

    
3370

    
3371
--
3372
-- Name: referencecontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3373
--
3374

    
3375
ALTER TABLE referencecontributor
3376
    ADD CONSTRAINT referencecontributor_pkey PRIMARY KEY (referencecontributor_id);
3377

    
3378

    
3379
--
3380
-- Name: referencejournal_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3381
--
3382

    
3383
ALTER TABLE referencejournal
3384
    ADD CONSTRAINT referencejournal_pkey PRIMARY KEY (referencejournal_id);
3385

    
3386

    
3387
--
3388
-- Name: referenceparty_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3389
--
3390

    
3391
ALTER TABLE referenceparty
3392
    ADD CONSTRAINT referenceparty_pkey PRIMARY KEY (referenceparty_id);
3393

    
3394

    
3395
--
3396
-- Name: revision_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3397
--
3398

    
3399
ALTER TABLE revision
3400
    ADD CONSTRAINT revision_pkey PRIMARY KEY (revision_id);
3401

    
3402

    
3403
--
3404
-- Name: soilobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3405
--
3406

    
3407
ALTER TABLE soilobs
3408
    ADD CONSTRAINT soilobs_pkey PRIMARY KEY (soilobs_id);
3409

    
3410

    
3411
--
3412
-- Name: soilobs_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3413
--
3414

    
3415
ALTER TABLE soilobs
3416
    ADD CONSTRAINT soilobs_unique UNIQUE (locationevent_id);
3417

    
3418

    
3419
--
3420
-- Name: soiltaxon_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3421
--
3422

    
3423
ALTER TABLE soiltaxon
3424
    ADD CONSTRAINT soiltaxon_pkey PRIMARY KEY (soiltaxon_id);
3425

    
3426

    
3427
--
3428
-- Name: specimen_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3429
--
3430

    
3431
ALTER TABLE specimen
3432
    ADD CONSTRAINT specimen_pkey PRIMARY KEY (specimen_id);
3433

    
3434

    
3435
--
3436
-- Name: specimenreplicate_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3437
--
3438

    
3439
ALTER TABLE specimenreplicate
3440
    ADD CONSTRAINT specimenreplicate_pkey PRIMARY KEY (taxonoccurrence_id);
3441

    
3442

    
3443
--
3444
-- Name: stemobservation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3445
--
3446

    
3447
ALTER TABLE stemobservation
3448
    ADD CONSTRAINT stemobservation_pkey PRIMARY KEY (stemobservation_id);
3449

    
3450

    
3451
--
3452
-- Name: stemtag_current_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3453
--
3454

    
3455
ALTER TABLE stemtag
3456
    ADD CONSTRAINT stemtag_current_unique UNIQUE (stemobservation_id, iscurrent);
3457

    
3458

    
3459
--
3460
-- Name: stemtag_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3461
--
3462

    
3463
ALTER TABLE stemtag
3464
    ADD CONSTRAINT stemtag_pkey PRIMARY KEY (stemtag_id);
3465

    
3466

    
3467
--
3468
-- Name: stemtag_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3469
--
3470

    
3471
ALTER TABLE stemtag
3472
    ADD CONSTRAINT stemtag_unique UNIQUE (stemobservation_id, tag);
3473

    
3474

    
3475
--
3476
-- Name: stratum_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3477
--
3478

    
3479
ALTER TABLE stratum
3480
    ADD CONSTRAINT stratum_pkey PRIMARY KEY (stratum_id);
3481

    
3482

    
3483
--
3484
-- Name: taxonalt_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3485
--
3486

    
3487
ALTER TABLE taxonalt
3488
    ADD CONSTRAINT taxonalt_pkey PRIMARY KEY (taxonalt_id);
3489

    
3490

    
3491
--
3492
-- Name: taxondetermination_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3493
--
3494

    
3495
ALTER TABLE taxondetermination
3496
    ADD CONSTRAINT taxondetermination_pkey PRIMARY KEY (taxondetermination_id);
3497

    
3498

    
3499
--
3500
-- Name: taxonoccurrence_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3501
--
3502

    
3503
ALTER TABLE taxonoccurrence
3504
    ADD CONSTRAINT taxonoccurrence_pkey PRIMARY KEY (taxonoccurrence_id);
3505
ALTER TABLE taxondetermination
3506
    ADD CONSTRAINT taxondetermination_taxonoccurrence_id FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
3507

    
3508

    
3509

    
3510
--
3511
-- Name: telephone_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3512
--
3513

    
3514
ALTER TABLE telephone
3515
    ADD CONSTRAINT telephone_pkey PRIMARY KEY (telephone_id);
3516

    
3517

    
3518
--
3519
-- Name: trait_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3520
--
3521

    
3522
ALTER TABLE trait
3523
    ADD CONSTRAINT trait_pkey PRIMARY KEY (trait_id);
3524

    
3525

    
3526
--
3527
-- Name: userdefined_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3528
--
3529

    
3530
ALTER TABLE userdefined
3531
    ADD CONSTRAINT userdefined_pkey PRIMARY KEY (userdefined_id);
3532

    
3533

    
3534
--
3535
-- Name: userdefined_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3536
--
3537

    
3538
ALTER TABLE userdefined
3539
    ADD CONSTRAINT userdefined_unique UNIQUE (tablename, userdefinedname);
3540

    
3541

    
3542
--
3543
-- Name: voucher_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3544
--
3545

    
3546
ALTER TABLE voucher
3547
    ADD CONSTRAINT voucher_pkey PRIMARY KEY (voucher_id);
3548

    
3549

    
3550
--
3551
-- Name: voucher_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: 
3552
--
3553

    
3554
ALTER TABLE voucher
3555
    ADD CONSTRAINT voucher_unique UNIQUE (taxonoccurrence_id, specimenreplicate_id);
3556

    
3557

    
3558
--
3559
-- Name: aggregateoccurrence_taxonoccurrence_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3560
--
3561

    
3562

    
3563

    
3564

    
3565
--
3566
-- Name: aggregateoccurrence_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3567
--
3568

    
3569

    
3570

    
3571

    
3572
--
3573
-- Name: commclass_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3574
--
3575

    
3576
CREATE UNIQUE INDEX commclass_accessioncode_index ON commclass  (accessioncode);
3577

    
3578

    
3579
--
3580
-- Name: commclass_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3581
--
3582

    
3583

    
3584

    
3585

    
3586
--
3587
-- Name: commconcept_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3588
--
3589

    
3590
CREATE UNIQUE INDEX commconcept_accessioncode_index ON commconcept  (accessioncode);
3591

    
3592

    
3593
--
3594
-- Name: commstatus_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3595
--
3596

    
3597
CREATE UNIQUE INDEX commstatus_accessioncode_index ON commstatus  (accessioncode);
3598

    
3599

    
3600
--
3601
-- Name: covermethod_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3602
--
3603

    
3604
CREATE UNIQUE INDEX covermethod_accessioncode_index ON covermethod  (accessioncode);
3605

    
3606

    
3607
--
3608
-- Name: graphic_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3609
--
3610

    
3611
CREATE UNIQUE INDEX graphic_accessioncode_index ON graphic  (accessioncode);
3612

    
3613

    
3614
--
3615
-- Name: location_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3616
--
3617

    
3618
CREATE UNIQUE INDEX location_accessioncode_index ON location  (accessioncode);
3619

    
3620

    
3621
--
3622
-- Name: location_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3623
--
3624

    
3625
CREATE UNIQUE INDEX location_unique_within_datasource ON location  (datasource_id, sourceaccessioncode);
3626

    
3627

    
3628
--
3629
-- Name: locationevent_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3630
--
3631

    
3632
CREATE UNIQUE INDEX locationevent_accessioncode_index ON locationevent  (accessioncode);
3633

    
3634

    
3635
--
3636
-- Name: locationevent_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3637
--
3638

    
3639

    
3640

    
3641

    
3642
--
3643
-- Name: locationevent_unique_within_location; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3644
--
3645

    
3646

    
3647

    
3648

    
3649
--
3650
-- Name: locationevent_unique_within_parent_by_authorlocationcode; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3651
--
3652

    
3653

    
3654

    
3655

    
3656
--
3657
-- Name: locationevent_unique_within_parent_by_location; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3658
--
3659

    
3660

    
3661

    
3662

    
3663
--
3664
-- Name: locationevent_unique_within_project; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3665
--
3666

    
3667

    
3668

    
3669

    
3670
--
3671
-- Name: locationeventsynonym_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3672
--
3673

    
3674
CREATE UNIQUE INDEX locationeventsynonym_accessioncode_index ON locationeventsynonym  (accessioncode);
3675

    
3676

    
3677
--
3678
-- Name: method_accessioncode; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3679
--
3680

    
3681
CREATE UNIQUE INDEX method_accessioncode ON method  (accessioncode);
3682

    
3683

    
3684
--
3685
-- Name: method_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3686
--
3687

    
3688

    
3689

    
3690

    
3691
--
3692
-- Name: namedplace_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3693
--
3694

    
3695
CREATE UNIQUE INDEX namedplace_accessioncode_index ON namedplace  (accessioncode);
3696

    
3697

    
3698
--
3699
-- Name: namedplace_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3700
--
3701

    
3702

    
3703

    
3704

    
3705
--
3706
-- Name: note_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3707
--
3708

    
3709
CREATE UNIQUE INDEX note_accessioncode_index ON note  (accessioncode);
3710

    
3711

    
3712
--
3713
-- Name: party_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3714
--
3715

    
3716
CREATE UNIQUE INDEX party_accessioncode_index ON party  (accessioncode);
3717

    
3718

    
3719
--
3720
-- Name: party_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3721
--
3722

    
3723

    
3724

    
3725

    
3726
--
3727
-- Name: plantconcept_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3728
--
3729

    
3730
CREATE UNIQUE INDEX plantconcept_accessioncode_index ON plantconcept  (accessioncode);
3731

    
3732

    
3733
--
3734
-- Name: plantname_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3735
--
3736

    
3737

    
3738

    
3739

    
3740
--
3741
-- Name: plantnamescope_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3742
--
3743

    
3744

    
3745

    
3746

    
3747
--
3748
-- Name: plantobservation_aggregateoccurrence_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3749
--
3750

    
3751
CREATE UNIQUE INDEX plantobservation_aggregateoccurrence_1_to_1 ON plantobservation  (aggregateoccurrence_id);
3752

    
3753

    
3754
--
3755
-- Name: plantobservation_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3756
--
3757

    
3758

    
3759

    
3760

    
3761
--
3762
-- Name: plantstatus_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3763
--
3764

    
3765
CREATE UNIQUE INDEX plantstatus_accessioncode_index ON plantstatus  (accessioncode);
3766

    
3767

    
3768
--
3769
-- Name: project_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3770
--
3771

    
3772
CREATE UNIQUE INDEX project_accessioncode_index ON project  (accessioncode);
3773

    
3774

    
3775
--
3776
-- Name: project_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3777
--
3778

    
3779

    
3780

    
3781

    
3782
--
3783
-- Name: reference_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3784
--
3785

    
3786
CREATE UNIQUE INDEX reference_accessioncode_index ON reference  (accessioncode);
3787

    
3788

    
3789
--
3790
-- Name: referencejournal_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3791
--
3792

    
3793
CREATE UNIQUE INDEX referencejournal_accessioncode_index ON referencejournal  (accessioncode);
3794

    
3795

    
3796
--
3797
-- Name: referenceparty_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3798
--
3799

    
3800
CREATE UNIQUE INDEX referenceparty_accessioncode_index ON referenceparty  (accessioncode);
3801

    
3802

    
3803
--
3804
-- Name: soiltaxon_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3805
--
3806

    
3807
CREATE UNIQUE INDEX soiltaxon_accessioncode_index ON soiltaxon  (accessioncode);
3808

    
3809

    
3810
--
3811
-- Name: specimenreplicate_plantobservation_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3812
--
3813

    
3814

    
3815

    
3816

    
3817
--
3818
-- Name: specimenreplicate_unique_catalognumber; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3819
--
3820

    
3821

    
3822

    
3823

    
3824
--
3825
-- Name: specimenreplicate_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3826
--
3827

    
3828

    
3829

    
3830

    
3831
--
3832
-- Name: stemobservation_plantobservation_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3833
--
3834

    
3835

    
3836

    
3837

    
3838
--
3839
-- Name: stemobservation_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3840
--
3841

    
3842

    
3843

    
3844

    
3845
--
3846
-- Name: stemobservation_unique_within_plantobservation; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3847
--
3848

    
3849

    
3850

    
3851

    
3852
--
3853
-- Name: taxondetermination_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3854
--
3855

    
3856
CREATE UNIQUE INDEX taxondetermination_accessioncode_index ON taxondetermination  (accessioncode);
3857

    
3858

    
3859
--
3860
-- Name: taxondetermination_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3861
--
3862

    
3863

    
3864

    
3865

    
3866
--
3867
-- Name: taxonoccurrence_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3868
--
3869

    
3870
CREATE UNIQUE INDEX taxonoccurrence_accessioncode_index ON taxonoccurrence  (accessioncode);
3871

    
3872

    
3873
--
3874
-- Name: taxonoccurrence_locationevent_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3875
--
3876

    
3877

    
3878

    
3879

    
3880
--
3881
-- Name: taxonoccurrence_unique_within_datasource; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3882
--
3883

    
3884

    
3885

    
3886

    
3887
--
3888
-- Name: userdefined_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: 
3889
--
3890

    
3891
CREATE UNIQUE INDEX userdefined_accessioncode_index ON userdefined  (accessioncode);
3892

    
3893

    
3894
--
3895
-- Name: namedplace_update_ancestors; Type: TRIGGER; Schema: public; Owner: -
3896
--
3897

    
3898

    
3899

    
3900

    
3901
--
3902
-- Name: plantname_update_ancestors; Type: TRIGGER; Schema: public; Owner: -
3903
--
3904

    
3905

    
3906

    
3907

    
3908
--
3909
-- Name: plantobservation_aggregateoccurrence_count_1; Type: TRIGGER; Schema: public; Owner: -
3910
--
3911

    
3912

    
3913

    
3914

    
3915
--
3916
-- Name: taxondetermination_taxonoccurrence_id_fkey; Type: TRIGGER; Schema: public; Owner: -
3917
--
3918

    
3919

    
3920

    
3921

    
3922
--
3923
-- Name: address_organization_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3924
--
3925

    
3926
ALTER TABLE address
3927
    ADD CONSTRAINT address_organization_id_fkey FOREIGN KEY (organization_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
3928

    
3929

    
3930
--
3931
-- Name: address_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3932
--
3933

    
3934
ALTER TABLE address
3935
    ADD CONSTRAINT address_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
3936

    
3937

    
3938
--
3939
-- Name: aggregateoccurrence_coverindex_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3940
--
3941

    
3942
ALTER TABLE aggregateoccurrence
3943
    ADD CONSTRAINT aggregateoccurrence_coverindex_id_fkey FOREIGN KEY (coverindex_id) REFERENCES coverindex(coverindex_id) ON UPDATE CASCADE ON DELETE SET NULL;
3944

    
3945

    
3946
--
3947
-- Name: aggregateoccurrence_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3948
--
3949

    
3950

    
3951

    
3952

    
3953
--
3954
-- Name: aggregateoccurrence_method_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3955
--
3956

    
3957
ALTER TABLE aggregateoccurrence
3958
    ADD CONSTRAINT aggregateoccurrence_method_id_fkey FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE;
3959

    
3960

    
3961
--
3962
-- Name: aggregateoccurrence_stratum_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3963
--
3964

    
3965
ALTER TABLE aggregateoccurrence
3966
    ADD CONSTRAINT aggregateoccurrence_stratum_id_fkey FOREIGN KEY (stratum_id) REFERENCES stratum(stratum_id) ON UPDATE CASCADE ON DELETE CASCADE;
3967

    
3968

    
3969
--
3970
-- Name: aggregateoccurrence_taxonoccurrence_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3971
--
3972

    
3973
ALTER TABLE aggregateoccurrence
3974
    ADD CONSTRAINT aggregateoccurrence_taxonoccurrence_id_fkey FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
3975

    
3976

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

    
3981
ALTER TABLE classcontributor
3982
    ADD CONSTRAINT classcontributor_commclass_id_fkey FOREIGN KEY (commclass_id) REFERENCES commclass(commclass_id) ON UPDATE CASCADE ON DELETE CASCADE;
3983

    
3984

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

    
3989

    
3990

    
3991

    
3992
--
3993
-- Name: commclass_classpublication_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
3994
--
3995

    
3996

    
3997

    
3998

    
3999
--
4000
-- Name: commclass_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4001
--
4002

    
4003
ALTER TABLE commclass
4004
    ADD CONSTRAINT commclass_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4005

    
4006

    
4007
--
4008
-- Name: commconcept_commname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4009
--
4010

    
4011
ALTER TABLE commconcept
4012
    ADD CONSTRAINT commconcept_commname_id_fkey FOREIGN KEY (commname_id) REFERENCES commname(commname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4013

    
4014

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

    
4019

    
4020

    
4021

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

    
4026
ALTER TABLE commcorrelation
4027
    ADD CONSTRAINT commcorrelation_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4028

    
4029

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

    
4034
ALTER TABLE commcorrelation
4035
    ADD CONSTRAINT commcorrelation_commstatus_id_fkey FOREIGN KEY (commstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4036

    
4037

    
4038
--
4039
-- Name: commdetermination_commauthority_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4040
--
4041

    
4042

    
4043

    
4044

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

    
4049
ALTER TABLE commdetermination
4050
    ADD CONSTRAINT commdetermination_commclass_id_fkey FOREIGN KEY (commclass_id) REFERENCES commclass(commclass_id) ON UPDATE CASCADE ON DELETE CASCADE;
4051

    
4052

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

    
4057
ALTER TABLE commdetermination
4058
    ADD CONSTRAINT commdetermination_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4059

    
4060

    
4061
--
4062
-- Name: commlineage_childcommstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4063
--
4064

    
4065
ALTER TABLE commlineage
4066
    ADD CONSTRAINT commlineage_childcommstatus_id_fkey FOREIGN KEY (childcommstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4067

    
4068

    
4069
--
4070
-- Name: commlineage_parentcommstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4071
--
4072

    
4073
ALTER TABLE commlineage
4074
    ADD CONSTRAINT commlineage_parentcommstatus_id_fkey FOREIGN KEY (parentcommstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4075

    
4076

    
4077
--
4078
-- Name: commname_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4079
--
4080

    
4081

    
4082

    
4083

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

    
4088
ALTER TABLE commstatus
4089
    ADD CONSTRAINT commstatus_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4090

    
4091

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

    
4096
ALTER TABLE commstatus
4097
    ADD CONSTRAINT commstatus_commparent_id_fkey FOREIGN KEY (commparent_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4098

    
4099

    
4100
--
4101
-- Name: commstatus_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4102
--
4103

    
4104

    
4105

    
4106

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

    
4111

    
4112

    
4113

    
4114
--
4115
-- Name: commusage_commconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4116
--
4117

    
4118
ALTER TABLE commusage
4119
    ADD CONSTRAINT commusage_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4120

    
4121

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

    
4126
ALTER TABLE commusage
4127
    ADD CONSTRAINT commusage_commname_id_fkey FOREIGN KEY (commname_id) REFERENCES commname(commname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4128

    
4129

    
4130
--
4131
-- Name: commusage_commstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4132
--
4133

    
4134
ALTER TABLE commusage
4135
    ADD CONSTRAINT commusage_commstatus_id_fkey FOREIGN KEY (commstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4136

    
4137

    
4138
--
4139
-- Name: commusage_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4140
--
4141

    
4142

    
4143

    
4144

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

    
4149
ALTER TABLE coverindex
4150
    ADD CONSTRAINT coverindex_covermethod_id_fkey FOREIGN KEY (covermethod_id) REFERENCES covermethod(covermethod_id) ON UPDATE CASCADE ON DELETE CASCADE;
4151

    
4152

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

    
4157

    
4158

    
4159

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

    
4164
ALTER TABLE definedvalue
4165
    ADD CONSTRAINT definedvalue_userdefined_id_fkey FOREIGN KEY (userdefined_id) REFERENCES userdefined(userdefined_id) ON UPDATE CASCADE ON DELETE CASCADE;
4166

    
4167

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

    
4172
ALTER TABLE disturbanceobs
4173
    ADD CONSTRAINT disturbanceobs_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4174

    
4175

    
4176
--
4177
-- Name: graphic_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4178
--
4179

    
4180
ALTER TABLE graphic
4181
    ADD CONSTRAINT graphic_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4182

    
4183

    
4184
--
4185
-- Name: location_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4186
--
4187

    
4188

    
4189

    
4190

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

    
4195
ALTER TABLE location
4196
    ADD CONSTRAINT location_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES location(location_id) ON UPDATE CASCADE ON DELETE CASCADE;
4197

    
4198

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

    
4203

    
4204

    
4205

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

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

    
4213

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

    
4218
ALTER TABLE locationdetermination
4219
    ADD CONSTRAINT locationdetermination_namedplace_id_fkey FOREIGN KEY (namedplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4220

    
4221

    
4222
--
4223
-- Name: locationevent_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4224
--
4225

    
4226

    
4227

    
4228

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

    
4233
ALTER TABLE locationevent
4234
    ADD CONSTRAINT locationevent_location_id_fkey FOREIGN KEY (location_id) REFERENCES location(location_id) ON UPDATE CASCADE ON DELETE CASCADE;
4235

    
4236

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

    
4241
ALTER TABLE locationevent
4242
    ADD CONSTRAINT locationevent_method_id_fkey FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE;
4243

    
4244

    
4245
--
4246
-- Name: locationevent_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4247
--
4248

    
4249
ALTER TABLE locationevent
4250
    ADD CONSTRAINT locationevent_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4251

    
4252

    
4253
--
4254
-- Name: locationevent_previous_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4255
--
4256

    
4257
ALTER TABLE locationevent
4258
    ADD CONSTRAINT locationevent_previous_id_fkey FOREIGN KEY (previous_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4259

    
4260

    
4261
--
4262
-- Name: locationevent_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4263
--
4264

    
4265
ALTER TABLE locationevent
4266
    ADD CONSTRAINT locationevent_project_id_fkey FOREIGN KEY (project_id) REFERENCES project(project_id) ON UPDATE CASCADE ON DELETE CASCADE;
4267

    
4268

    
4269
--
4270
-- Name: locationevent_soiltaxon_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4271
--
4272

    
4273
ALTER TABLE locationevent
4274
    ADD CONSTRAINT locationevent_soiltaxon_id_fkey FOREIGN KEY (soiltaxon_id) REFERENCES soiltaxon(soiltaxon_id) ON UPDATE CASCADE ON DELETE CASCADE;
4275

    
4276

    
4277
--
4278
-- Name: locationeventcontributor_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4279
--
4280

    
4281
ALTER TABLE locationeventcontributor
4282
    ADD CONSTRAINT locationeventcontributor_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4283

    
4284

    
4285
--
4286
-- Name: locationeventcontributor_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4287
--
4288

    
4289

    
4290

    
4291

    
4292
--
4293
-- Name: locationeventsynonym_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4294
--
4295

    
4296

    
4297

    
4298

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

    
4303
ALTER TABLE locationeventsynonym
4304
    ADD CONSTRAINT locationeventsynonym_primarylocationevent_id_fkey FOREIGN KEY (primarylocationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4305

    
4306

    
4307
--
4308
-- Name: locationeventsynonym_synonymlocationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4309
--
4310

    
4311
ALTER TABLE locationeventsynonym
4312
    ADD CONSTRAINT locationeventsynonym_synonymlocationevent_id_fkey FOREIGN KEY (synonymlocationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4313

    
4314

    
4315
--
4316
-- Name: method_covermethod_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4317
--
4318

    
4319
ALTER TABLE method
4320
    ADD CONSTRAINT method_covermethod_id_fkey FOREIGN KEY (covermethod_id) REFERENCES covermethod(covermethod_id) ON UPDATE CASCADE ON DELETE CASCADE;
4321

    
4322

    
4323
--
4324
-- Name: method_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4325
--
4326

    
4327

    
4328

    
4329

    
4330
--
4331
-- Name: method_subplotmethod_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4332
--
4333

    
4334
ALTER TABLE method
4335
    ADD CONSTRAINT method_subplotmethod_id_fkey FOREIGN KEY (subplotmethod_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE SET NULL;
4336

    
4337

    
4338
--
4339
-- Name: methodtaxonclass_method_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4340
--
4341

    
4342
ALTER TABLE methodtaxonclass
4343
    ADD CONSTRAINT methodtaxonclass_method_id_fkey FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE;
4344

    
4345

    
4346
--
4347
-- Name: methodtaxonclass_plantconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4348
--
4349

    
4350
ALTER TABLE methodtaxonclass
4351
    ADD CONSTRAINT methodtaxonclass_plantconcept_id_fkey FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4352

    
4353

    
4354
--
4355
-- Name: methodtaxonclass_submethod_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4356
--
4357

    
4358
ALTER TABLE methodtaxonclass
4359
    ADD CONSTRAINT methodtaxonclass_submethod_id_fkey FOREIGN KEY (submethod_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE SET NULL;
4360

    
4361

    
4362
--
4363
-- Name: namedplace_ancestor_ancestor_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4364
--
4365

    
4366
ALTER TABLE namedplace_ancestor
4367
    ADD CONSTRAINT namedplace_ancestor_ancestor_id_fkey FOREIGN KEY (ancestor_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4368

    
4369

    
4370
--
4371
-- Name: namedplace_ancestor_namedplace_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4372
--
4373

    
4374
ALTER TABLE namedplace_ancestor
4375
    ADD CONSTRAINT namedplace_ancestor_namedplace_id_fkey FOREIGN KEY (namedplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4376

    
4377

    
4378
--
4379
-- Name: namedplace_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4380
--
4381

    
4382
ALTER TABLE namedplace
4383
    ADD CONSTRAINT namedplace_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4384

    
4385

    
4386
--
4387
-- Name: namedplacecorrelation_childplace_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4388
--
4389

    
4390
ALTER TABLE namedplacecorrelation
4391
    ADD CONSTRAINT namedplacecorrelation_childplace_id_fkey FOREIGN KEY (childplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4392

    
4393

    
4394
--
4395
-- Name: namedplacecorrelation_parentplace_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4396
--
4397

    
4398
ALTER TABLE namedplacecorrelation
4399
    ADD CONSTRAINT namedplacecorrelation_parentplace_id_fkey FOREIGN KEY (parentplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4400

    
4401

    
4402
--
4403
-- Name: note_notelink_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4404
--
4405

    
4406
ALTER TABLE note
4407
    ADD CONSTRAINT note_notelink_id_fkey FOREIGN KEY (notelink_id) REFERENCES notelink(notelink_id) ON UPDATE CASCADE ON DELETE CASCADE;
4408

    
4409

    
4410
--
4411
-- Name: note_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4412
--
4413

    
4414

    
4415

    
4416

    
4417
--
4418
-- Name: party_currentname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4419
--
4420

    
4421
ALTER TABLE party
4422
    ADD CONSTRAINT party_currentname_id_fkey FOREIGN KEY (currentname_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
4423

    
4424

    
4425
--
4426
-- Name: partymember_childparty_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4427
--
4428

    
4429
ALTER TABLE partymember
4430
    ADD CONSTRAINT partymember_childparty_id_fkey FOREIGN KEY (childparty_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
4431

    
4432

    
4433
--
4434
-- Name: partymember_parentparty_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4435
--
4436

    
4437
ALTER TABLE partymember
4438
    ADD CONSTRAINT partymember_parentparty_id_fkey FOREIGN KEY (parentparty_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
4439

    
4440

    
4441
--
4442
-- Name: plantconcept_plantname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4443
--
4444

    
4445
ALTER TABLE plantconcept
4446
    ADD CONSTRAINT plantconcept_plantname_id_fkey FOREIGN KEY (plantname_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4447

    
4448

    
4449
--
4450
-- Name: plantcorrelation_plantconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4451
--
4452

    
4453
ALTER TABLE plantcorrelation
4454
    ADD CONSTRAINT plantcorrelation_plantconcept_id_fkey FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4455

    
4456

    
4457
--
4458
-- Name: plantcorrelation_plantstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4459
--
4460

    
4461
ALTER TABLE plantcorrelation
4462
    ADD CONSTRAINT plantcorrelation_plantstatus_id_fkey FOREIGN KEY (plantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4463

    
4464

    
4465
--
4466
-- Name: plantlineage_childplantstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4467
--
4468

    
4469
ALTER TABLE plantlineage
4470
    ADD CONSTRAINT plantlineage_childplantstatus_id_fkey FOREIGN KEY (childplantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4471

    
4472

    
4473
--
4474
-- Name: plantlineage_parentplantstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4475
--
4476

    
4477
ALTER TABLE plantlineage
4478
    ADD CONSTRAINT plantlineage_parentplantstatus_id_fkey FOREIGN KEY (parentplantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4479

    
4480

    
4481
--
4482
-- Name: plantname_ancestor_ancestor_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4483
--
4484

    
4485
ALTER TABLE plantname_ancestor
4486
    ADD CONSTRAINT plantname_ancestor_ancestor_id_fkey FOREIGN KEY (ancestor_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4487

    
4488

    
4489
--
4490
-- Name: plantname_ancestor_plantname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4491
--
4492

    
4493
ALTER TABLE plantname_ancestor
4494
    ADD CONSTRAINT plantname_ancestor_plantname_id_fkey FOREIGN KEY (plantname_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4495

    
4496

    
4497
--
4498
-- Name: plantname_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4499
--
4500

    
4501
ALTER TABLE plantname
4502
    ADD CONSTRAINT plantname_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4503

    
4504

    
4505
--
4506
-- Name: plantname_scope_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4507
--
4508

    
4509
ALTER TABLE plantname
4510
    ADD CONSTRAINT plantname_scope_id_fkey FOREIGN KEY (scope_id) REFERENCES plantnamescope(plantnamescope_id) ON UPDATE CASCADE ON DELETE CASCADE;
4511

    
4512

    
4513
--
4514
-- Name: plantnamescope_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4515
--
4516

    
4517
ALTER TABLE plantnamescope
4518
    ADD CONSTRAINT plantnamescope_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4519

    
4520

    
4521
--
4522
-- Name: plantnamescope_namedplace_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4523
--
4524

    
4525
ALTER TABLE plantnamescope
4526
    ADD CONSTRAINT plantnamescope_namedplace_id_fkey FOREIGN KEY (namedplace_id) REFERENCES namedplace(namedplace_id) ON UPDATE CASCADE ON DELETE CASCADE;
4527

    
4528

    
4529
--
4530
-- Name: plantnamescope_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4531
--
4532

    
4533
ALTER TABLE plantnamescope
4534
    ADD CONSTRAINT plantnamescope_project_id_fkey FOREIGN KEY (project_id) REFERENCES project(project_id) ON UPDATE CASCADE ON DELETE CASCADE;
4535

    
4536

    
4537
--
4538
-- Name: plantobservation_aggregateoccurrence_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4539
--
4540

    
4541
ALTER TABLE plantobservation
4542
    ADD CONSTRAINT plantobservation_aggregateoccurrence_id_fkey FOREIGN KEY (aggregateoccurrence_id) REFERENCES aggregateoccurrence(aggregateoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
4543

    
4544

    
4545
--
4546
-- Name: plantobservation_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4547
--
4548

    
4549

    
4550

    
4551

    
4552
--
4553
-- Name: plantobservation_plant_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4554
--
4555

    
4556
ALTER TABLE plantobservation
4557
    ADD CONSTRAINT plantobservation_plant_id_fkey FOREIGN KEY (plant_id) REFERENCES plant(plant_id) ON UPDATE CASCADE ON DELETE CASCADE;
4558

    
4559

    
4560
--
4561
-- Name: plantstatus_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4562
--
4563

    
4564

    
4565

    
4566

    
4567
--
4568
-- Name: plantstatus_plantconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4569
--
4570

    
4571
ALTER TABLE plantstatus
4572
    ADD CONSTRAINT plantstatus_plantconcept_id_fkey FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4573

    
4574

    
4575
--
4576
-- Name: plantstatus_reference_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4577
--
4578

    
4579

    
4580

    
4581

    
4582
--
4583
-- Name: plantusage_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4584
--
4585

    
4586

    
4587

    
4588

    
4589
--
4590
-- Name: plantusage_plantconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4591
--
4592

    
4593
ALTER TABLE plantusage
4594
    ADD CONSTRAINT plantusage_plantconcept_id_fkey FOREIGN KEY (plantconcept_id) REFERENCES plantconcept(plantconcept_id) ON UPDATE CASCADE ON DELETE CASCADE;
4595

    
4596

    
4597
--
4598
-- Name: plantusage_plantname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4599
--
4600

    
4601
ALTER TABLE plantusage
4602
    ADD CONSTRAINT plantusage_plantname_id_fkey FOREIGN KEY (plantname_id) REFERENCES plantname(plantname_id) ON UPDATE CASCADE ON DELETE CASCADE;
4603

    
4604

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

    
4609
ALTER TABLE plantusage
4610
    ADD CONSTRAINT plantusage_plantstatus_id_fkey FOREIGN KEY (plantstatus_id) REFERENCES plantstatus(plantstatus_id) ON UPDATE CASCADE ON DELETE CASCADE;
4611

    
4612

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

    
4617

    
4618

    
4619

    
4620
--
4621
-- Name: projectcontributor_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4622
--
4623

    
4624

    
4625

    
4626

    
4627
--
4628
-- Name: projectcontributor_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4629
--
4630

    
4631
ALTER TABLE projectcontributor
4632
    ADD CONSTRAINT projectcontributor_project_id_fkey FOREIGN KEY (project_id) REFERENCES project(project_id) ON UPDATE CASCADE ON DELETE CASCADE;
4633

    
4634

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

    
4639
ALTER TABLE reference
4640
    ADD CONSTRAINT reference_referencejournal_id_fkey FOREIGN KEY (referencejournal_id) REFERENCES referencejournal(referencejournal_id) ON UPDATE CASCADE ON DELETE CASCADE;
4641

    
4642

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

    
4647
ALTER TABLE referencealtident
4648
    ADD CONSTRAINT referencealtident_reference_id_fkey FOREIGN KEY (reference_id) REFERENCES reference(reference_id) ON UPDATE CASCADE ON DELETE CASCADE;
4649

    
4650

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

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

    
4658

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

    
4663
ALTER TABLE referencecontributor
4664
    ADD CONSTRAINT referencecontributor_referenceparty_id_fkey FOREIGN KEY (referenceparty_id) REFERENCES referenceparty(referenceparty_id) ON UPDATE CASCADE ON DELETE CASCADE;
4665

    
4666

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

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

    
4674

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

    
4679
ALTER TABLE revision
4680
    ADD CONSTRAINT revision_previousrevision_id_fkey FOREIGN KEY (previousrevision_id) REFERENCES revision(revision_id) ON UPDATE CASCADE ON DELETE CASCADE;
4681

    
4682

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

    
4687
ALTER TABLE soilobs
4688
    ADD CONSTRAINT soilobs_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4689

    
4690

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

    
4695
ALTER TABLE soiltaxon
4696
    ADD CONSTRAINT soiltaxon_soilparent_id_fkey FOREIGN KEY (soilparent_id) REFERENCES soiltaxon(soiltaxon_id) ON UPDATE CASCADE ON DELETE CASCADE;
4697

    
4698

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

    
4703

    
4704

    
4705

    
4706
--
4707
-- Name: specimenreplicate_institution_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4708
--
4709

    
4710

    
4711

    
4712

    
4713
--
4714
-- Name: specimenreplicate_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4715
--
4716

    
4717
ALTER TABLE specimenreplicate
4718
    ADD CONSTRAINT specimenreplicate_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
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
ALTER TABLE stratum
4773
    ADD CONSTRAINT stratum_method_id_fkey FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE;
4774

    
4775

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

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

    
4783

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

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

    
4791

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

    
4796

    
4797

    
4798

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

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

    
4806

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

    
4811

    
4812

    
4813

    
4814
--
4815
-- Name: taxonoccurrence_datasource_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4816
--
4817

    
4818

    
4819

    
4820

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

    
4825
ALTER TABLE taxonoccurrence
4826
    ADD CONSTRAINT taxonoccurrence_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE;
4827

    
4828

    
4829
--
4830
-- Name: telephone_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4831
--
4832

    
4833
ALTER TABLE telephone
4834
    ADD CONSTRAINT telephone_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE;
4835

    
4836

    
4837
--
4838
-- Name: trait_stemobservation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4839
--
4840

    
4841
ALTER TABLE trait
4842
    ADD CONSTRAINT trait_stemobservation_id_fkey FOREIGN KEY (stemobservation_id) REFERENCES stemobservation(stemobservation_id) ON UPDATE CASCADE ON DELETE CASCADE;
4843

    
4844

    
4845
--
4846
-- Name: voucher_specimenreplicate_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4847
--
4848

    
4849
ALTER TABLE voucher
4850
    ADD CONSTRAINT voucher_specimenreplicate_id_fkey FOREIGN KEY (specimenreplicate_id) REFERENCES specimenreplicate(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
4851

    
4852

    
4853
--
4854
-- Name: voucher_taxonoccurrence_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
4855
--
4856

    
4857
ALTER TABLE voucher
4858
    ADD CONSTRAINT voucher_taxonoccurrence_id_fkey FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE;
4859

    
4860

    
4861
--
4862
-- PostgreSQL database dump complete
4863
--
4864

    
(19-19/20)