-- -- PostgreSQL database dump -- SET statement_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = off; SET check_function_bodies = false; SET client_min_messages = warning; SET escape_string_warning = off; SET search_path = public, pg_catalog; -- -- Name: establishmentmeans_dwc; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE establishmentmeans_dwc AS ENUM ( 'cultivated', 'wild', 'native', 'exotic', 'invasive', 'escaped from captivity' ); -- -- Name: TYPE establishmentmeans_dwc; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TYPE establishmentmeans_dwc IS 'See '; -- -- Name: growthform; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE growthform AS ENUM ( 'tree', 'shrub', 'liana', 'vine', 'herb', 'hemiepiphyte', 'epiphyte', 'grass', 'forb', 'moss', 'lichen', 'fungus', 'floating aquatic', 'submerged aquatic' ); -- -- Name: higher_plant_group; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE higher_plant_group AS ENUM ( 'bryophytes', 'ferns and allies', 'flowering plants', 'gymnosperms (conifers)', 'gymnosperms (non-conifer)' ); -- -- Name: occurrencestatus_dwc; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE occurrencestatus_dwc AS ENUM ( 'present', 'absent', 'common', 'irregular', 'rare', 'doubtful' ); -- -- Name: placerank; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE placerank AS ENUM ( 'continent', 'waterBody', 'islandGroup', 'island', 'country', 'territory', 'region', 'stateProvince', 'county', 'municipality', 'village', 'site' ); -- -- Name: TYPE placerank; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TYPE placerank IS 'county = parish, canton municipality = city From , '; -- -- Name: rankedplacename; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE rankedplacename AS ( rank placerank, verbatimrank text, placename text ); -- -- Name: taxonrank; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE taxonrank AS ENUM ( 'unknown', 'suprageneric', 'domain', 'superkingdom', 'kingdom', 'subkingdom', 'infrakingdom', 'superphylum', 'phylum', 'subphylum', 'infraphylum', 'superclass', 'class', 'subclass', 'infraclass', 'superorder', 'order', 'suborder', 'infraorder', 'family group', 'superfamily', 'family', 'subfamily', 'infrafamily', 'family subdivision', 'supertribe', 'tribe', 'subtribe', 'infratribe', 'genus group', 'genus', 'subgenus', 'infragenus', 'genus subdivision', 'section', 'subsection', 'series', 'subseries', 'infrageneric', 'species aggregate', 'species group', 'species', 'subspecies', 'subspecific aggregate', 'below subspecies', 'infraspecies', 'biovariety', 'pathovariety', 'variety', 'subvariety', 'subsubvariety', 'forma', 'subforma', 'subsubforma', 'special forma', 'infraspecific', 'candidate', 'cultivated plants', 'cultivar', 'convar', 'grex', 'cultivar group', 'graft-chimaera', 'denomination class' ); -- -- Name: TYPE taxonrank; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TYPE taxonrank IS 'From '; -- -- Name: rankedtaxonname; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE rankedtaxonname AS ( rank taxonrank, verbatimrank text, taxonname text ); -- -- Name: relationship; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE relationship AS ENUM ( 'is congruent to', 'is not congruent to', 'is included in', 'is not included in', 'overlaps', 'does not overlap', 'is child taxon of', 'is anamorph of', 'is teleomorph of', 'is hybrid child of', 'is ambiregnal of', 'is vernacular for' ); -- -- Name: role; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE role AS ENUM ( 'unknown', 'collector', 'identifier', 'computer', 'contributor' ); -- -- Name: sourcetype; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE sourcetype AS ENUM ( 'herbarium', 'primary database', 'aggregator', 'book', 'article', 'chapter', 'conference proceedings', 'dissertation', 'edited book', 'generic', 'journal', 'manuscript', 'personal communication', 'presentation', 'report', 'thesis', 'website' ); -- -- Name: TYPE sourcetype; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TYPE sourcetype IS 'From , , '; -- -- Name: taxonclass; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE taxonclass AS ENUM ( 'tree', 'shrub', 'liana', 'vine', 'herb', 'hemiepiphyte', 'epiphyte', 'grass', 'forb', 'moss', 'lichen', 'fungus', 'floating aquatic', 'submerged aquatic', 'cultivated', 'wild', 'native', 'exotic', 'invasive', 'escaped from captivity', 'dominant', 'vascular', 'woody' ); -- -- Name: TYPE taxonclass; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TYPE taxonclass IS '= growthform + establishmentmeans_dwc + some others'; -- -- Name: taxonomic_status; Type: TYPE; Schema: public; Owner: - -- CREATE TYPE taxonomic_status AS ENUM ( 'No opinion', 'Accepted', 'Synonym', 'Illegitimate', 'Invalid' ); -- -- Name: TYPE taxonomic_status; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TYPE taxonomic_status IS 'See '; -- -- Name: _cm_to_m(double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _cm_to_m(value double precision) RETURNS double precision LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT $1/100. $_$; -- -- Name: _fraction_to_percent(double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _fraction_to_percent(value double precision) RETURNS double precision LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT $1*100. $_$; -- -- Name: _ft_to_m(double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _ft_to_m(value double precision) RETURNS double precision LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT _in_to_m($1*12) $_$; -- -- Name: _ha_to_m2(double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _ha_to_m2(value double precision) RETURNS double precision LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT $1*10000. $_$; -- -- Name: _has_taxonomic_name(taxonrank); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _has_taxonomic_name(rank taxonrank) RETURNS boolean LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT $1 >= 'family' $_$; -- -- Name: _in_to_m(double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _in_to_m(value double precision) RETURNS double precision LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT $1*2.54/100. $_$; -- -- Name: _km_to_m(double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _km_to_m(value double precision) RETURNS double precision LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT $1*1000. $_$; -- -- Name: _m2_to_ha(double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _m2_to_ha(value double precision) RETURNS double precision LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT $1/10000. $_$; -- -- Name: _m_to_cm(double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _m_to_cm(value double precision) RETURNS double precision LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT $1*100. $_$; -- -- Name: _m_to_km(double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _m_to_km(value double precision) RETURNS double precision LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT $1/1000. $_$; -- -- Name: _percent_to_fraction(double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _percent_to_fraction(value double precision) RETURNS double precision LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT $1/100. $_$; -- -- Name: _taxon_family_require_std(text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _taxon_family_require_std(family text) RETURNS text LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT (CASE WHEN lower($1) LIKE '%aceae' THEN $1 ELSE NULL END) $_$; -- -- Name: _taxonlabel_set_matched_label_id(integer, integer, double precision); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _taxonlabel_set_matched_label_id(taxonlabel_id integer, matched_label_id integer, matched_label_fit_fraction double precision DEFAULT NULL::double precision) RETURNS integer LANGUAGE plpgsql AS $$ BEGIN -- Use EXECUTE to avoid caching query plan EXECUTE ' UPDATE taxonlabel SET matched_label_id = '||quote_nullable(matched_label_id)||' , matched_label_fit_fraction = ' ||quote_nullable(matched_label_fit_fraction)||' WHERE taxonlabel_id = '||quote_nullable(taxonlabel_id)||' '; RETURN taxonlabel_id; END; $$; -- -- Name: _taxonlabel_set_parent_id(integer, integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _taxonlabel_set_parent_id(taxonlabel_id integer, parent_id integer) RETURNS integer LANGUAGE plpgsql AS $$ BEGIN -- Use EXECUTE to avoid caching query plan EXECUTE ' UPDATE taxonlabel SET parent_id = '||quote_nullable(parent_id)||' WHERE taxonlabel_id = '||quote_nullable(taxonlabel_id)||' '; RETURN taxonlabel_id; END; $$; -- -- Name: _taxonomic_name_is_epithet(taxonrank); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION _taxonomic_name_is_epithet(rank taxonrank) RETURNS boolean LANGUAGE sql IMMUTABLE STRICT AS $_$ SELECT $1 <= 'genus' $_$; -- -- Name: make_family_higher_plant_group(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION make_family_higher_plant_group() RETURNS void LANGUAGE plpgsql AS $$ DECLARE source_id_ integer := (SELECT source_id FROM source WHERE shortname = 'NCBI'); row_ higher_plant_group_nodes%ROWTYPE; BEGIN TRUNCATE family_higher_plant_group; FOR row_ IN SELECT * FROM higher_plant_group_nodes ORDER BY higher_plant_group, node_name LOOP DECLARE higher_plant_group_id integer := ( SELECT taxonlabel_id FROM taxonlabel WHERE source_id = source_id_ AND taxonomicname = row_.node_name ); family text; BEGIN FOR family IN SELECT taxonepithet FROM taxonlabel_relationship JOIN taxonlabel ON taxonlabel_id = descendant_id WHERE ancestor_id = higher_plant_group_id AND rank = 'family' AND source_id = source_id_ LOOP BEGIN INSERT INTO family_higher_plant_group VALUES (family, row_.higher_plant_group) ; EXCEPTION WHEN unique_violation THEN NULL; END; END LOOP; END; END LOOP; END; $$; -- -- Name: party_source_id_self_ref(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION party_source_id_self_ref() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF new.party_id IS NULL THEN -- prepopulate party_id new.party_id = nextval('party_party_id_seq'::regclass); END IF; IF new.source_id = 0 THEN -- make self-source new.source_id = new.party_id; END IF; RETURN new; END; $$; -- -- Name: place_matched_place_id_self_ref(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION place_matched_place_id_self_ref() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF new.place_id IS NULL THEN -- prepopulate place_id new.place_id = nextval('place_place_id_seq'::regclass); END IF; IF new.matched_place_id = 0 THEN -- make self-source new.matched_place_id = new.place_id; END IF; RETURN new; END; $$; SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: place; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE place ( place_id integer NOT NULL, source_id integer NOT NULL, placecode text, canon_place_id integer, matched_place_id integer, coordinates_id integer, placename_id integer, continent text, country text, stateprovince text, county text, description text, geosource_valid boolean, distance_to_country_m double precision, distance_to_state_m double precision, CONSTRAINT place_required_key CHECK (((((((placecode IS NOT NULL) OR (coordinates_id IS NOT NULL)) OR (continent IS NOT NULL)) OR (country IS NOT NULL)) OR (stateprovince IS NOT NULL)) OR (county IS NOT NULL))) ); -- -- Name: TABLE place; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE place IS 'The full path to a place. Can be either verbatim or accepted. For accepted names, points to the identified place. To use a custom hierarchy of placenames with no explicit column, point to the lowest-rank placename in placename_id.'; -- -- Name: COLUMN place.matched_place_id; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN place.matched_place_id IS 'The closest match to this place. Places should be linked in a three-level hierarchy of datasource place -> verbatim place -> accepted place. An accepted place should point to itself in this field. This will happen automatically by setting it to the special value 0.'; -- -- Name: place_set_canon_place_id(place, integer, boolean); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION place_set_canon_place_id(new place, old_matched_place_id integer DEFAULT NULL::integer, is_update boolean DEFAULT false) RETURNS place LANGUAGE plpgsql AS $$ BEGIN IF NOT is_update OR new.matched_place_id IS DISTINCT FROM old_matched_place_id THEN IF new.matched_place_id IS NOT NULL THEN IF new.matched_place_id = new.place_id THEN -- self-source new.canon_place_id := new.place_id; -- make self-source ELSE -- propagate from matched place new.canon_place_id := ( SELECT canon_place_id FROM place WHERE place_id = new.matched_place_id ); END IF; IF is_update THEN -- Update canon_place_id on places that resolve to this place UPDATE place SET canon_place_id = new.canon_place_id WHERE matched_place_id = new.place_id AND place_id != new.place_id -- no infinite recursion ; END IF; ELSE -- no matched place new.canon_place_id := new.place_id; -- make self-source END IF; END IF; RETURN new; END; $$; -- -- Name: place_set_canon_place_id_on_insert(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION place_set_canon_place_id_on_insert() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN new := place_set_canon_place_id(new); RETURN new; END; $$; -- -- Name: place_set_canon_place_id_on_update(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION place_set_canon_place_id_on_update() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN new := place_set_canon_place_id(new, old.matched_place_id, true); RETURN new; END; $$; -- -- Name: placename_update_ancestors(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION placename_update_ancestors() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN -- Delete existing ancestors DELETE FROM placename_ancestor WHERE placename_id = new.placename_id; IF new.parent_id IS NOT NULL THEN -- Copy parent's ancestors to this node's ancestors INSERT INTO placename_ancestor (placename_id, ancestor_id) SELECT new.placename_id, ancestor_id FROM placename_ancestor WHERE placename_id = new.parent_id ; END IF; -- Add "ancestor" for this node /* This is useful for queries, because you don't have to separately test if the leaf node is the one you're looking for, in addition to that leaf node's ancestors. */ INSERT INTO placename_ancestor (placename_id, ancestor_id) VALUES (new.placename_id, new.placename_id) ; -- Tell immediate children to update their ancestors lists, which will -- recursively tell all descendants UPDATE placename SET placename_id = placename_id -- need at least one SET statement -- Add COALESCE() to enable using placename_unique index for lookup WHERE COALESCE(parent_id, 2147483647) = new.placename_id AND placename_id != new.placename_id -- avoid infinite recursion ; /* Note: We don't need an ON DELETE trigger to update the descendants' ancestors when a node is deleted, because the placename.placename_parent_id foreign key is set to ON DELETE CASCADE, which just removes all the descendants anyway. */ RETURN new; END; $$; -- -- Name: plantobservation_aggregateoccurrence_count_1(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION plantobservation_aggregateoccurrence_count_1() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN UPDATE aggregateoccurrence SET count = GREATEST(COALESCE(count, 0), 1) -- at least 1 WHERE aggregateoccurrence_id = new.aggregateoccurrence_id ; RETURN new; END; $$; -- -- Name: source_by_shortname(text); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION source_by_shortname(shortname text) RETURNS integer LANGUAGE sql STABLE STRICT AS $_$ SELECT source_id FROM source WHERE shortname = $1 LIMIT 1 $_$; -- -- Name: sync_analytical_aggregate_to_view(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION sync_analytical_aggregate_to_view() RETURNS void LANGUAGE sql AS $$ DROP TABLE IF EXISTS analytical_aggregate; CREATE TABLE analytical_aggregate AS SELECT * FROM analytical_aggregate_view; $$; -- -- Name: sync_analytical_stem_to_view(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION sync_analytical_stem_to_view() RETURNS void LANGUAGE sql AS $$ DROP TABLE IF EXISTS analytical_stem; CREATE TABLE analytical_stem AS SELECT * FROM analytical_stem_view; $$; -- -- Name: sync_geoscrub_input_to_view(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION sync_geoscrub_input_to_view() RETURNS void LANGUAGE sql AS $$ DROP TABLE IF EXISTS geoscrub_input; CREATE TABLE geoscrub_input AS SELECT * FROM geoscrub_input_view; $$; -- -- Name: taxonlabel_0_matched_label_id_self_ref(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION taxonlabel_0_matched_label_id_self_ref() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF new.taxonlabel_id IS NULL THEN -- prepopulate taxonlabel_id new.taxonlabel_id = nextval('taxonlabel_taxonlabel_id_seq'::regclass); END IF; IF new.matched_label_id = 0 THEN -- make self-source new.matched_label_id = new.taxonlabel_id; END IF; RETURN new; END; $$; -- -- Name: taxonlabel_1_matched_label_min_fit(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION taxonlabel_1_matched_label_min_fit() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF new.matched_label_id IS NOT NULL AND new.matched_label_fit_fraction < 0.8 THEN -- insufficient match new.matched_label_id = NULL; new.matched_label_fit_fraction = NULL; END IF; RETURN new; END; $$; -- -- Name: taxonlabel_2_set_canon_label_id_on_insert(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION taxonlabel_2_set_canon_label_id_on_insert() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN new := taxonlabel_set_canon_label_id(new); RETURN new; END; $$; -- -- Name: taxonlabel_2_set_canon_label_id_on_update(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION taxonlabel_2_set_canon_label_id_on_update() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN new := taxonlabel_set_canon_label_id(new, old.matched_label_id, true); RETURN new; END; $$; -- -- Name: taxonlabel_3_parent_id_avoid_self_ref(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION taxonlabel_3_parent_id_avoid_self_ref() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN new.parent_id = nullif(new.parent_id, new.taxonlabel_id); RETURN new; END; $$; -- -- Name: taxonlabel; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE taxonlabel ( taxonlabel_id integer NOT NULL, source_id integer NOT NULL, sourceaccessioncode text, creationdate date, taxonstatus taxonomic_status, canon_label_id integer, matched_label_id integer, matched_label_fit_fraction double precision, parent_id integer, taxonepithet text, rank taxonrank, taxonomicname text, accessioncode text, CONSTRAINT taxonlabel_matched_label_fit_fraction_range CHECK (((matched_label_fit_fraction >= (0)::double precision) AND (matched_label_fit_fraction <= (1)::double precision))), CONSTRAINT taxonlabel_required_key CHECK ((((sourceaccessioncode IS NOT NULL) OR (taxonepithet IS NOT NULL)) OR (taxonomicname IS NOT NULL))) ); -- -- Name: TABLE taxonlabel; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE taxonlabel IS 'A taxon label defined by an entity. Can be at any level in the taxonomic hierarchy. Can be either verbatim or accepted. "A taxon (plural: taxa) is a group of one (or more) populations of organism(s), which a taxonomist adjudges to be a unit" (http://en.wikipedia.org/wiki/Taxon) Note that taxonepithet stores only one rank (e.g. family) of the full taxonomic name. The higher-level ranks are stored in the taxon label''s chain of parent_id ancestors. Equivalent to VegBank''s plantConcept and plantName tables, plus plantParent_ID and plantLevel from plantStatus.'; -- -- Name: COLUMN taxonlabel.source_id; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonlabel.source_id IS 'The entity that created the taxon label.'; -- -- Name: COLUMN taxonlabel.sourceaccessioncode; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonlabel.sourceaccessioncode IS 'The datasource''s identifier for the taxonlabel.'; -- -- Name: COLUMN taxonlabel.creationdate; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonlabel.creationdate IS 'The date the taxonlabel was created or defined. For a taxonlabel applied in a taxondetermination, this is the date the determination was made.'; -- -- Name: COLUMN taxonlabel.canon_label_id; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonlabel.canon_label_id IS 'The canonical taxonlabel for this taxonlabel.'; -- -- Name: COLUMN taxonlabel.matched_label_id; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonlabel.matched_label_id IS 'The taxonlabel containing the closest match to this taxonlabel. taxonlabels should be linked in a four-level hierarchy of datasource label -> parsed label -> matched label -> accepted label. A previously-accepted name''s label should be further linked to the synonym that has replaced it. To indicate a synonym between taxonlabels of different sources, choose one taxonlabel to be authoritative and point the other taxonlabel to it using this field. An accepted name should point to itself in this field. This will happen automatically by setting it to the special value 0.'; -- -- Name: COLUMN taxonlabel.matched_label_fit_fraction; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonlabel.matched_label_fit_fraction IS 'The closeness of fit of the matched label.'; -- -- Name: COLUMN taxonlabel.parent_id; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonlabel.parent_id IS 'The parent taxonlabel. Note that while a taxon *name* may have multiple parents, a taxonlabel *instance* has only one, based on the creator''s opinion of where that taxonlabel goes in the taxonomic hierarchy.'; -- -- Name: COLUMN taxonlabel.taxonepithet; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonlabel.taxonepithet IS 'The epithet of the taxon within its parent taxon. This is the lowest-rank portion of this taxonlabel''s full taxonomic name, if it has one.'; -- -- Name: COLUMN taxonlabel.rank; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonlabel.rank IS 'The taxon''s level in the taxonomic hierarchy, standardized to a closed list. Even if you specify a custom verbatimrank in taxonverbatim, you should also specify a closest-match rank from the taxonrank closed list.'; -- -- Name: COLUMN taxonlabel.taxonomicname; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonlabel.taxonomicname IS 'The concatenated taxonomic name which uniquely identifies this taxon, including the author of that name. Must be unique within the datasource. Equivalent to Darwin Core''s scientificName.'; -- -- Name: taxonlabel_set_canon_label_id(taxonlabel, integer, boolean); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION taxonlabel_set_canon_label_id(new taxonlabel, old_matched_label_id integer DEFAULT NULL::integer, is_update boolean DEFAULT false) RETURNS taxonlabel LANGUAGE plpgsql AS $$ BEGIN IF NOT is_update OR new.matched_label_id IS DISTINCT FROM old_matched_label_id THEN IF new.matched_label_id IS NOT NULL THEN IF new.matched_label_id = new.taxonlabel_id THEN -- self-source new.canon_label_id := new.taxonlabel_id; -- make self-source ELSE -- propagate from matched label new.canon_label_id := ( SELECT canon_label_id FROM taxonlabel WHERE taxonlabel_id = new.matched_label_id ); END IF; IF is_update THEN -- Update canon_label_id on labels that resolve to this label UPDATE taxonlabel SET canon_label_id = new.canon_label_id WHERE matched_label_id = new.taxonlabel_id AND taxonlabel_id != new.taxonlabel_id -- no infinite recursion ; END IF; ELSE -- no matched taxonlabel new.canon_label_id := new.taxonlabel_id; -- make self-source END IF; END IF; RETURN new; END; $$; -- -- Name: taxonlabel_update_ancestors(taxonlabel, integer, integer); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION taxonlabel_update_ancestors(new taxonlabel, parent_id_ integer, old_parent_id integer DEFAULT NULL::integer) RETURNS void LANGUAGE plpgsql AS $$ BEGIN IF parent_id_ IS DISTINCT FROM old_parent_id THEN DECLARE -- These include the parent itself old_ancestors integer[] := ( SELECT array_agg(ancestor_id) FROM taxonlabel_relationship WHERE descendant_id = old_parent_id ); new_ancestors integer[] := ( SELECT array_agg(ancestor_id) FROM taxonlabel_relationship WHERE descendant_id = parent_id_ ); descendant_id_ taxonlabel_relationship.descendant_id%TYPE; ancestor_id_ taxonlabel_relationship.ancestor_id%TYPE; BEGIN FOR descendant_id_ IN -- also includes self SELECT descendant_id FROM taxonlabel_relationship WHERE ancestor_id = new.taxonlabel_id LOOP -- Delete old parent's ancestors DELETE FROM taxonlabel_relationship WHERE descendant_id = descendant_id_ AND ancestor_id = ANY (old_ancestors) ; -- Add new parent's ancestors FOR ancestor_id_ IN SELECT unnest(new_ancestors) LOOP BEGIN INSERT INTO taxonlabel_relationship (descendant_id, ancestor_id) SELECT descendant_id_, ancestor_id_ ; EXCEPTION WHEN unique_violation THEN RAISE WARNING '%', SQLERRM; END; END LOOP; END LOOP; END; END IF; /* Note: We don't need an ON DELETE trigger to update the descendants' ancestors when a node is deleted, because the taxonlabel_relationship.ancestor_id foreign key is ON DELETE CASCADE. */ END; $$; -- -- Name: taxonlabel_update_ancestors_on_insert(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION taxonlabel_update_ancestors_on_insert() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN /* Add "ancestor" for this node. This is useful for queries, because you don't have to separately test if the leaf node is the one you're looking for, in addition to that leaf node's ancestors. */ INSERT INTO taxonlabel_relationship (descendant_id, ancestor_id) VALUES (new.taxonlabel_id, new.taxonlabel_id) ; PERFORM taxonlabel_update_ancestors(new, new.parent_id); PERFORM taxonlabel_update_ancestors(new, NULLIF(new.matched_label_id, new.taxonlabel_id)); RETURN new; END; $$; -- -- Name: taxonlabel_update_ancestors_on_update(); Type: FUNCTION; Schema: public; Owner: - -- CREATE FUNCTION taxonlabel_update_ancestors_on_update() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN PERFORM taxonlabel_update_ancestors(new, new.parent_id, old.parent_id); PERFORM taxonlabel_update_ancestors(new, NULLIF(new.matched_label_id, new.taxonlabel_id), NULLIF(old.matched_label_id, old.taxonlabel_id)); RETURN new; END; $$; -- -- Name: concat(text); Type: AGGREGATE; Schema: public; Owner: - -- CREATE AGGREGATE concat(text) ( SFUNC = textcat, STYPE = text, INITCOND = '' ); -- -- Name: address; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE address ( address_id integer NOT NULL, party_id integer NOT NULL, organization_id integer, orgposition text, email text, street text, street2 text, city text, stateprovince text, postalcode text, country text, currentflag boolean, addressstartdate date ); -- -- Name: address_address_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE address_address_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: address_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE address_address_id_seq OWNED BY address.address_id; -- -- Name: address_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: aggregateoccurrence; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE aggregateoccurrence ( aggregateoccurrence_id integer NOT NULL, source_id integer NOT NULL, sourceaccessioncode text, taxonoccurrence_id integer, collectiondate date, cover_fraction double precision, linecover_m double precision, basalarea_m2 double precision, biomass_kg_m2 double precision, inferencearea_m2 double precision, count integer, stratum_id integer, coverindex_id integer, occurrencestatus_dwc occurrencestatus_dwc DEFAULT 'present'::occurrencestatus_dwc NOT NULL, method_id integer, notes text, accessioncode text, CONSTRAINT aggregateoccurrence_required_key CHECK (((sourceaccessioncode IS NOT NULL) OR (taxonoccurrence_id IS NOT NULL))) ); -- -- Name: TABLE aggregateoccurrence; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE aggregateoccurrence IS 'Equivalent to VegBank''s taxonimportance table.'; -- -- Name: COLUMN aggregateoccurrence.linecover_m; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN aggregateoccurrence.linecover_m IS 'The distance in m along which this occurrence intercepts a line subplot.'; -- -- Name: COLUMN aggregateoccurrence.occurrencestatus_dwc; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN aggregateoccurrence.occurrencestatus_dwc IS 'The extent to which the taxon is present. See .'; -- -- Name: aggregateoccurrence_aggregateoccurrence_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE aggregateoccurrence_aggregateoccurrence_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: aggregateoccurrence_aggregateoccurrence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE aggregateoccurrence_aggregateoccurrence_id_seq OWNED BY aggregateoccurrence.aggregateoccurrence_id; -- -- Name: aggregateoccurrence_aggregateoccurrence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: analytical_aggregate; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE analytical_aggregate ( "institutionCode" text, country text, "stateProvince" text, county text, "decimalLatitude" double precision, "decimalLongitude" double precision, "geosourceValid" boolean, "isNewWorld" boolean, "distanceToCountry_km" double precision, "distanceToStateProvince_km" double precision, "plotName" text, "elevationInMeters" double precision, "plotArea_ha" double precision, "samplingProtocol" text, "dateCollected" date, "higherPlantGroup" higher_plant_group, family text, genus text, "speciesBinomial" text, "scientificName" text, "scientificNameAuthorship" text, "scientificNameWithMorphospecies" text, threatened boolean, "growthForm" growthform, cultivated boolean, "cultivatedBasis" text, "coverPercent" double precision, "individualCount" bigint, "individualCount_1cm_or_more" bigint, "individualCount_2_5cm_or_more" bigint, "individualCount_10cm_or_more" bigint ); -- -- Name: analytical_stem; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE analytical_stem ( "institutionCode" text, country text, "stateProvince" text, county text, "decimalLatitude" double precision, "decimalLongitude" double precision, "geosourceValid" boolean, "isNewWorld" boolean, "distanceToCountry_km" double precision, "distanceToStateProvince_km" double precision, "plotName" text, "elevationInMeters" double precision, "plotArea_ha" double precision, "samplingProtocol" text, "dateCollected" date, "higherPlantGroup" higher_plant_group, family text, genus text, "speciesBinomial" text, "scientificName" text, "scientificNameAuthorship" text, "scientificNameWithMorphospecies" text, threatened boolean, "identifiedBy" text, "growthForm" growthform, cultivated boolean, "cultivatedBasis" text, "coverPercent" double precision, "diameterBreastHeight_cm" double precision, height_m double precision, tag text, "organismX_m" double precision, "organismY_m" double precision, "recordedBy" text, "recordNumber" text ); -- -- Name: analytical_aggregate_view; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW analytical_aggregate_view AS SELECT analytical_stem."institutionCode", analytical_stem.country, analytical_stem."stateProvince", analytical_stem.county, analytical_stem."decimalLatitude", analytical_stem."decimalLongitude", analytical_stem."geosourceValid", analytical_stem."isNewWorld", analytical_stem."distanceToCountry_km", analytical_stem."distanceToStateProvince_km", analytical_stem."plotName", analytical_stem."elevationInMeters", analytical_stem."plotArea_ha", analytical_stem."samplingProtocol", analytical_stem."dateCollected", analytical_stem."higherPlantGroup", analytical_stem.family, analytical_stem.genus, analytical_stem."speciesBinomial", analytical_stem."scientificName", analytical_stem."scientificNameAuthorship", analytical_stem."scientificNameWithMorphospecies", analytical_stem.threatened, analytical_stem."growthForm", analytical_stem.cultivated, analytical_stem."cultivatedBasis", sum(analytical_stem."coverPercent") AS "coverPercent", count(analytical_stem."diameterBreastHeight_cm") AS "individualCount", count((analytical_stem."diameterBreastHeight_cm" >= _cm_to_m((1)::double precision))) AS "individualCount_1cm_or_more", count((analytical_stem."diameterBreastHeight_cm" >= _cm_to_m((2.5)::double precision))) AS "individualCount_2_5cm_or_more", count((analytical_stem."diameterBreastHeight_cm" >= _cm_to_m((10)::double precision))) AS "individualCount_10cm_or_more" FROM analytical_stem GROUP BY analytical_stem."institutionCode", analytical_stem.country, analytical_stem."stateProvince", analytical_stem.county, analytical_stem."decimalLatitude", analytical_stem."decimalLongitude", analytical_stem."geosourceValid", analytical_stem."isNewWorld", analytical_stem."distanceToCountry_km", analytical_stem."distanceToStateProvince_km", analytical_stem."plotName", analytical_stem."elevationInMeters", analytical_stem."plotArea_ha", analytical_stem."samplingProtocol", analytical_stem."dateCollected", analytical_stem."higherPlantGroup", analytical_stem.family, analytical_stem.genus, analytical_stem."speciesBinomial", analytical_stem."scientificName", analytical_stem."scientificNameAuthorship", analytical_stem."scientificNameWithMorphospecies", analytical_stem.threatened, analytical_stem."growthForm", analytical_stem.cultivated, analytical_stem."cultivatedBasis"; -- -- Name: coordinates; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE coordinates ( coordinates_id integer NOT NULL, source_id integer NOT NULL, latitude_deg double precision NOT NULL, longitude_deg double precision NOT NULL, verbatimlatitude text, verbatimlongitude text, verbatimcoordinates text, footprintgeometry_dwc text, coordsaccuracy_deg double precision ); -- -- Name: COLUMN coordinates.footprintgeometry_dwc; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN coordinates.footprintgeometry_dwc IS 'DwC''s footprintWKT field. "A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location" (http://rs.tdwg.org/dwc/terms/#footprintWKT).'; -- -- Name: COLUMN coordinates.coordsaccuracy_deg; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN coordinates.coordsaccuracy_deg IS 'Accuracy of latitude/longitude or footprint geometry, in meters. This should generally be at least 1 m, which is the accuracy of the best GPSes.'; -- -- Name: family_higher_plant_group; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE family_higher_plant_group ( family text NOT NULL, higher_plant_group higher_plant_group ); -- -- Name: location; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE location ( location_id integer NOT NULL, source_id integer NOT NULL, sourceaccessioncode text, parent_id integer, authorlocationcode text, confidentialitystatus integer DEFAULT 0 NOT NULL, confidentialityreason text, sublocationxposition_m double precision, sublocationyposition_m double precision, authorzone text, authordatum text, authorlocation text, locationnarrative text, azimuth double precision, shape text, area_m2 double precision, standsize text, placementmethod text, permanence boolean, layoutnarrative text, elevation_m double precision, elevationaccuracy_m double precision, elevationrange_m double precision, verbatimelevation text, slopeaspect_deg double precision, minslopeaspect_deg double precision, maxslopeaspect_deg double precision, slopegradient_fraction double precision, minslopegradient_fraction double precision, maxslopegradient_fraction double precision, topoposition text, landform text, surficialdeposits text, rocktype text, submitter_surname text, submitter_givenname text, submitter_email text, notespublic boolean, notesmgt boolean, revisions boolean, dateentered date DEFAULT now(), locationrationalenarrative text, accessioncode text, CONSTRAINT location_required_key CHECK (((sourceaccessioncode IS NOT NULL) OR (authorlocationcode IS NOT NULL))) ); -- -- Name: TABLE location; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE location IS 'Equivalent to VegBank''s plot table.'; -- -- Name: locationevent; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE locationevent ( locationevent_id integer NOT NULL, source_id integer NOT NULL, sourceaccessioncode text, parent_id integer, location_id integer, project_id integer, authoreventcode text, previous_id integer, obsstartdate date, obsenddate date, dateaccuracy text, method_id integer, temperature_c double precision, precipitation_m double precision, autotaxoncover boolean, originaldata text, effortlevel text, floristicquality text, bryophytequality text, lichenquality text, locationeventnarrative text, landscapenarrative text, homogeneity text, phenologicaspect text, representativeness text, standmaturity text, successionalstatus text, basalarea double precision, hydrologicregime text, soilmoistureregime text, soildrainage text, watersalinity text, waterdepth_m double precision, shoredistance double precision, soildepth double precision, organicdepth double precision, soiltaxon_id integer, soiltaxonsrc text, percentbedrock double precision, percentrockgravel double precision, percentwood double precision, percentlitter double precision, percentbaresoil double precision, percentwater double precision, percentother double precision, nameother text, treeht double precision, shrubht double precision, fieldht double precision, nonvascularht double precision, submergedht double precision, treecover double precision, shrubcover double precision, fieldcover double precision, nonvascularcover double precision, floatingcover double precision, submergedcover double precision, dominantstratum text, growthform1type text, growthform2type text, growthform3type text, growthform1cover double precision, growthform2cover double precision, growthform3cover double precision, totalcover double precision, notespublic boolean, notesmgt boolean, revisions boolean, dateentered date DEFAULT now(), toptaxon1name text, toptaxon2name text, toptaxon3name text, toptaxon4name text, toptaxon5name text, numberoftaxa integer, accessioncode text, CONSTRAINT locationevent_required_key CHECK (((sourceaccessioncode IS NOT NULL) OR (location_id IS NOT NULL))) ); -- -- Name: TABLE locationevent; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE locationevent IS 'Equivalent to VegBank''s observation table.'; -- -- Name: locationplace; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE locationplace ( locationplace_id integer NOT NULL, location_id integer NOT NULL, place_id integer NOT NULL, identifier_id integer ); -- -- Name: TABLE locationplace; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE locationplace IS 'Equivalent to VegBank''s place table.'; -- -- Name: method; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE method ( method_id integer NOT NULL, source_id integer NOT NULL, name text, description text, diameterheight_m double precision, mindiameter_m double precision, maxdiameter_m double precision, minheight_m double precision, maxheight_m double precision, observationtype text, observationmeasure text, covermethod_id integer, samplingfactor double precision DEFAULT 1 NOT NULL, coverbasis text, stemsamplemethod text, shape text, length_m double precision, width_m double precision, radius_m double precision, area_m2 double precision, samplearea_m2 double precision, subplotspacing_m double precision, subplotmethod_id integer, pointsperline integer, accessioncode text, CONSTRAINT method_required_key CHECK ((((name IS NOT NULL) OR (description IS NOT NULL)) OR (observationmeasure IS NOT NULL))) ); -- -- Name: TABLE method; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE method IS 'A method for sampling and aggregating plants. Replaces VegBank''s stratummethod and stratumtype tables. Important: *All* length- or area-related measurements throughout VegBIEN must be converted to SI base units, e.g. cm -> m, ha -> m^2.**'; -- -- Name: COLUMN method.source_id; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.source_id IS 'Use the source table (e.g. source.url) to store a link to the original plain text description.'; -- -- Name: COLUMN method.name; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.name IS 'A short name for the set of methods used. Although there is no existing standard, many names are widely used, and could be useful for finding plots with similar methodology.'; -- -- Name: COLUMN method.description; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.description IS 'Additional metadata helpful for understanding how the data were collected during the observation event.'; -- -- Name: COLUMN method.diameterheight_m; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.diameterheight_m IS 'The height in m at which the diameter is measured. e.g. 1.37 m for breast height (DBH).'; -- -- Name: COLUMN method.mindiameter_m; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.mindiameter_m IS 'Lower diameter limit in m for inclusion of a tree.'; -- -- Name: COLUMN method.maxdiameter_m; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.maxdiameter_m IS 'Upper diameter limit in m for inclusion of a tree.'; -- -- Name: COLUMN method.minheight_m; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.minheight_m IS 'Lower height limit in m for inclusion of a tree.'; -- -- Name: COLUMN method.maxheight_m; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.maxheight_m IS 'Upper height limit in m for inclusion of a tree.'; -- -- Name: COLUMN method.observationtype; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.observationtype IS 'values: aggregate, individual, both'; -- -- Name: COLUMN method.observationmeasure; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.observationmeasure IS 'e.g. count, cover, presence, points-intercepted, distance-intercepted'; -- -- Name: COLUMN method.samplingfactor; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.samplingfactor IS 'Here, we could explicitly say that we are sampling a particular area by a different size representative sample area. Simply divide the number of plants connected to this record by this value to get the extrapolated (or interpolated) number of plants in the area in question. This explicitly notes a subsample or supersample.'; -- -- Name: COLUMN method.coverbasis; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.coverbasis IS 'Were cover values for the total taxon list collected from one contiguous area or dispersed subplots? entire: Cover based on observation of an entire plot consisting of a single contiguous area of land. subplot-contiguous: Cover based on observation of a single contiguous area of land of less spatial extent than the entire plot. subplot-regular: Cover based on observation of multiple subplots arranged in a regular pattern within the overall plot. subplot-random: Cover based on observation of multiple randomly dispersed subplots within the overall plot. subplot-haphazard: Cover based on observation of multiple subplots haphazardly arranged within the overall plot. line-intercept: Cover based on length of line touching each species present. point-intercept: Cover based on number of points for each species present. '; -- -- Name: COLUMN method.stemsamplemethod; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.stemsamplemethod IS 'The method used to obtain basal area or tree stem data (e.g., full census, point quarter, random pairs, Bitterlich, other). e.g.: Full census Point quarter Random pairs Bitterlich Other Subsample census'; -- -- Name: COLUMN method.shape; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.shape IS 'e.g. square, rectangle, circle, line, point, other'; -- -- Name: COLUMN method.samplearea_m2; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.samplearea_m2 IS 'The total surface area used for cover estimates and for which a complete species list is provided. If subplots were used, this would be the total area of the subplots without interstitial space.'; -- -- Name: COLUMN method.subplotspacing_m; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.subplotspacing_m IS 'Spacing in m between adjacent subplots, lines (line-intercept data), or points (point-intercept data).'; -- -- Name: COLUMN method.subplotmethod_id; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.subplotmethod_id IS 'Method to use for each subplot/line/point, which will specify subplot size, line length, etc.'; -- -- Name: COLUMN method.pointsperline; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN method.pointsperline IS 'The number of points sampled on each line subplot for point-intercept data.'; -- -- Name: party; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE party ( party_id integer NOT NULL, source_id integer NOT NULL, fullname text, salutation text, givenname text, middlename text, surname text, suffix text, department text, organizationname text, currentname_id integer, contactinstructions text, email text, partytype text, partypublic boolean DEFAULT true, accessioncode text, CONSTRAINT party_required_key CHECK (((organizationname IS NOT NULL) OR ((source_id <> party_id) AND ((fullname IS NOT NULL) OR (surname IS NOT NULL))))) ); -- -- Name: plantobservation; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE plantobservation ( plantobservation_id integer NOT NULL, source_id integer NOT NULL, sourceaccessioncode text, aggregateoccurrence_id integer, overallheight_m double precision, overallheightaccuracy_m double precision, collectionnumber text, stemcount integer, plant_id integer, accessioncode text, CONSTRAINT plantobservation_required_key CHECK (((sourceaccessioncode IS NOT NULL) OR (aggregateoccurrence_id IS NOT NULL))) ); -- -- Name: TABLE plantobservation; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE plantobservation IS 'Equivalent to VegBank''s stemcount table.'; -- -- Name: COLUMN plantobservation.collectionnumber; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN plantobservation.collectionnumber IS 'The number of the organism within the data collection or event.'; -- -- Name: source; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE source ( source_id integer NOT NULL, shortname text, fulltext text, sourcetype sourcetype, accesslevel text, accessconditions text, title text, titlesuperior text, sourcejournal_id integer, volume text, issue text, pagerange text, totalpages integer, publisher text, publicationplace text, isbn text, edition text, numberofvolumes integer, chapternumber integer, reportnumber integer, communicationtype text, degree text, url text, doi text, additionalinfo text, pubdate date, accessdate date, conferencedate date, accessioncode text ); -- -- Name: stemobservation; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE stemobservation ( stemobservation_id integer NOT NULL, source_id integer NOT NULL, sourceaccessioncode text, plantobservation_id integer NOT NULL, authorstemcode text, tag text, tags text, xposition_m double precision, yposition_m double precision, diameterbreastheight_m double precision, basaldiameter_m double precision, diameteraccuracy_m double precision, height_m double precision, heightfirstbranch_m double precision, heightaccuracy_m double precision, health text, age double precision, accessioncode text ); -- -- Name: TABLE stemobservation; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE stemobservation IS 'Equivalent to VegBank''s stemlocation table.'; -- -- Name: COLUMN stemobservation.tags; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN stemobservation.tags IS 'Stores all tags when multiple tags provided. Older tags go first.'; -- -- Name: taxondetermination; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE taxondetermination ( taxondetermination_id integer NOT NULL, taxonoccurrence_id integer NOT NULL, taxonverbatim_id integer NOT NULL, party_id integer, role role DEFAULT 'unknown'::role NOT NULL, determinationtype text, source_id integer, isoriginal boolean DEFAULT false NOT NULL, iscurrent boolean DEFAULT false NOT NULL, taxonfit text, taxonconfidence text, grouptype text, notes text, notespublic boolean, notesmgt boolean, revisions boolean, determinationdate date, accessioncode text ); -- -- Name: TABLE taxondetermination; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE taxondetermination IS 'Equivalent to VegBank''s taxoninterpretation table.'; -- -- Name: taxonoccurrence; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE taxonoccurrence ( taxonoccurrence_id integer NOT NULL, source_id integer NOT NULL, sourceaccessioncode text, locationevent_id integer, authortaxoncode text, collector_id integer, growthform growthform, iscultivated boolean, cultivatedbasis text, isnative boolean, accessioncode text, CONSTRAINT taxonoccurrence_required_key CHECK (((sourceaccessioncode IS NOT NULL) OR (locationevent_id IS NOT NULL))) ); -- -- Name: TABLE taxonoccurrence; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE taxonoccurrence IS 'Equivalent to VegBank''s taxonobservation table.'; -- -- Name: COLUMN taxonoccurrence.iscultivated; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonoccurrence.iscultivated IS 'cultivated or wild'; -- -- Name: COLUMN taxonoccurrence.cultivatedbasis; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonoccurrence.cultivatedbasis IS 'The reason why a taxonoccurrence was marked as cultivated (or not).'; -- -- Name: COLUMN taxonoccurrence.isnative; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonoccurrence.isnative IS 'native or exotic'; -- -- Name: taxonverbatim; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE taxonverbatim ( taxonverbatim_id integer NOT NULL, taxonlabel_id integer NOT NULL, verbatimrank text, taxonomicname text, taxonname text, author text, family text, genus text, specific_epithet text, morphospecies text, growthform growthform, description text ); -- -- Name: TABLE taxonverbatim; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE taxonverbatim IS 'Component parts of the taxonlabel. Contains the datasource''s original taxonomic name components, as well as any parsed components produced by name resolution.'; -- -- Name: COLUMN taxonverbatim.verbatimrank; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonverbatim.verbatimrank IS 'The taxon''s verbatim level in the taxonomic hierarchy. Does not need to be in the taxonrank closed list.'; -- -- Name: COLUMN taxonverbatim.taxonomicname; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonverbatim.taxonomicname IS 'The concatenated taxonomic name which uniquely identifies this taxon, including the author of that name. Equivalent to Darwin Core''s scientificName.'; -- -- Name: COLUMN taxonverbatim.taxonname; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonverbatim.taxonname IS 'The taxonomic name without the author.'; -- -- Name: COLUMN taxonverbatim.author; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonverbatim.author IS 'The author of the taxonomic name. Equivalent to Darwin Core''s scientificNameAuthorship.'; -- -- Name: COLUMN taxonverbatim.family; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonverbatim.family IS 'The family of the taxonomic name. This is a cached field for easy querying; this should also be stored in taxonlabel at the appropriate rank.'; -- -- Name: COLUMN taxonverbatim.genus; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonverbatim.genus IS 'The genus portion of the taxonomic name. This is a cached field for easy querying; this should also be stored in taxonlabel at the appropriate rank.'; -- -- Name: COLUMN taxonverbatim.specific_epithet; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonverbatim.specific_epithet IS 'The specific epithet portion of the taxonomic name. This is a cached field for easy querying; this should also be stored in taxonlabel at the appropriate rank.'; -- -- Name: COLUMN taxonverbatim.morphospecies; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonverbatim.morphospecies IS 'The morphospecies suffix.'; -- -- Name: threatened_taxonlabel; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE threatened_taxonlabel ( taxonlabel_id integer NOT NULL ); -- -- Name: analytical_stem_view; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW analytical_stem_view AS SELECT source.shortname AS "institutionCode", canon_place.country, canon_place.stateprovince AS "stateProvince", datasource_place.county, coordinates.latitude_deg AS "decimalLatitude", coordinates.longitude_deg AS "decimalLongitude", canon_place.geosource_valid AS "geosourceValid", "newWorldCountries"."isNewWorld", _m_to_km(canon_place.distance_to_country_m) AS "distanceToCountry_km", _m_to_km(canon_place.distance_to_state_m) AS "distanceToStateProvince_km", location.sourceaccessioncode AS "plotName", location.elevation_m AS "elevationInMeters", _m2_to_ha(location.area_m2) AS "plotArea_ha", method.name AS "samplingProtocol", aggregateoccurrence.collectiondate AS "dateCollected", family_higher_plant_group.higher_plant_group AS "higherPlantGroup", accepted_taxonverbatim.family, accepted_taxonverbatim.genus, ((accepted_taxonverbatim.genus || ' '::text) || accepted_taxonverbatim.specific_epithet) AS "speciesBinomial", COALESCE(accepted_taxonverbatim.taxonomicname, accepted_taxonverbatim.taxonname) AS "scientificName", accepted_taxonverbatim.author AS "scientificNameAuthorship", NULLIF(array_to_string(ARRAY[accepted_taxonlabel.taxonomicname, parsed_taxonverbatim.morphospecies], ' '::text), ''::text) AS "scientificNameWithMorphospecies", (threatened_taxonlabel.taxonlabel_id IS NOT NULL) AS threatened, NULLIF(array_to_string(ARRAY[identifiedby.givenname, identifiedby.middlename, identifiedby.surname], ' '::text), ''::text) AS "identifiedBy", taxonoccurrence.growthform AS "growthForm", COALESCE(taxonoccurrence.iscultivated, (geoscrub_cultivated."isCultivated")::boolean) AS cultivated, CASE WHEN (taxonoccurrence.iscultivated IS NOT NULL) THEN taxonoccurrence.cultivatedbasis ELSE (geoscrub_cultivated."isCultivatedReason" || ''::text) END AS "cultivatedBasis", _fraction_to_percent(aggregateoccurrence.cover_fraction) AS "coverPercent", _m_to_cm(stemobservation.diameterbreastheight_m) AS "diameterBreastHeight_cm", stemobservation.height_m, stemobservation.tag, stemobservation.xposition_m AS "organismX_m", stemobservation.yposition_m AS "organismY_m", taxonoccurrence.collector_id AS "recordedBy", plantobservation.collectionnumber AS "recordNumber" FROM (((((((((((((((((((((((source JOIN location USING (source_id)) LEFT JOIN locationplace USING (location_id)) LEFT JOIN place datasource_place USING (place_id)) LEFT JOIN place canon_place ON ((canon_place.place_id = datasource_place.canon_place_id))) LEFT JOIN coordinates ON ((coordinates.coordinates_id = canon_place.coordinates_id))) LEFT JOIN geoscrub.geoscrub_cultivated ON (((geoscrub_cultivated."latitudeDecimalVerbatim" = coordinates.latitude_deg) AND (geoscrub_cultivated."longitudeDecimalVerbatim" = coordinates.longitude_deg)))) LEFT JOIN "newWorld"."newWorldCountries" ON (("newWorldCountries"."countryNameStd" = canon_place.country))) JOIN locationevent USING (location_id)) LEFT JOIN method USING (method_id)) JOIN taxonoccurrence USING (locationevent_id)) JOIN taxondetermination USING (taxonoccurrence_id)) LEFT JOIN party identifiedby ON ((identifiedby.party_id = taxondetermination.party_id))) JOIN taxonverbatim datasource_taxonverbatim USING (taxonverbatim_id)) JOIN taxonlabel datasource_taxonlabel USING (taxonlabel_id)) LEFT JOIN taxonlabel parsed_taxonlabel ON ((parsed_taxonlabel.taxonlabel_id = datasource_taxonlabel.matched_label_id))) LEFT JOIN taxonverbatim parsed_taxonverbatim ON ((parsed_taxonverbatim.taxonlabel_id = parsed_taxonlabel.taxonlabel_id))) LEFT JOIN taxonlabel accepted_taxonlabel ON ((accepted_taxonlabel.taxonlabel_id = datasource_taxonlabel.canon_label_id))) LEFT JOIN taxonverbatim accepted_taxonverbatim ON ((accepted_taxonverbatim.taxonlabel_id = accepted_taxonlabel.taxonlabel_id))) LEFT JOIN threatened_taxonlabel ON ((threatened_taxonlabel.taxonlabel_id = accepted_taxonlabel.taxonlabel_id))) LEFT JOIN aggregateoccurrence USING (taxonoccurrence_id)) LEFT JOIN family_higher_plant_group ON ((family_higher_plant_group.family = accepted_taxonverbatim.family))) LEFT JOIN plantobservation USING (aggregateoccurrence_id)) LEFT JOIN stemobservation USING (plantobservation_id)) WHERE (NOT taxondetermination.isoriginal); -- -- Name: classcontributor; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE classcontributor ( classcontributor_id integer NOT NULL, commclass_id integer NOT NULL, party_id integer NOT NULL, role role ); -- -- Name: classcontributor_classcontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE classcontributor_classcontributor_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: classcontributor_classcontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE classcontributor_classcontributor_id_seq OWNED BY classcontributor.classcontributor_id; -- -- Name: classcontributor_classcontributor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: commclass; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE commclass ( commclass_id integer NOT NULL, locationevent_id integer NOT NULL, inspection boolean, tableanalysis boolean, multivariateanalysis boolean, classpublication_id integer, classnotes text, commname text, commcode text, commframework text, commlevel text, classstartdate date, classstopdate date, expertsystem text, accessioncode text ); -- -- Name: commclass_commclass_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE commclass_commclass_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: commclass_commclass_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE commclass_commclass_id_seq OWNED BY commclass.commclass_id; -- -- Name: commclass_commclass_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: commconcept; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE commconcept ( commconcept_id integer NOT NULL, commname_id integer NOT NULL, source_id integer, commdescription text, commname text, accessioncode text ); -- -- Name: commconcept_commconcept_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE commconcept_commconcept_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: commconcept_commconcept_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE commconcept_commconcept_id_seq OWNED BY commconcept.commconcept_id; -- -- Name: commconcept_commconcept_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: commcorrelation; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE commcorrelation ( commcorrelation_id integer NOT NULL, commstatus_id integer NOT NULL, commconcept_id integer NOT NULL, commconvergence text NOT NULL, correlationstart date NOT NULL, correlationstop date ); -- -- Name: commcorrelation_commcorrelation_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE commcorrelation_commcorrelation_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: commcorrelation_commcorrelation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE commcorrelation_commcorrelation_id_seq OWNED BY commcorrelation.commcorrelation_id; -- -- Name: commcorrelation_commcorrelation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: commdetermination; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE commdetermination ( commdetermination_id integer NOT NULL, commclass_id integer NOT NULL, commconcept_id integer NOT NULL, commcode text, commname text, classfit text, classconfidence text, commauthority_id integer, notes text, type boolean, nomenclaturaltype boolean ); -- -- Name: commdetermination_commdetermination_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE commdetermination_commdetermination_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: commdetermination_commdetermination_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE commdetermination_commdetermination_id_seq OWNED BY commdetermination.commdetermination_id; -- -- Name: commdetermination_commdetermination_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: commlineage; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE commlineage ( commlineage_id integer NOT NULL, parentcommstatus_id integer NOT NULL, childcommstatus_id integer NOT NULL ); -- -- Name: commlineage_commlineage_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE commlineage_commlineage_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: commlineage_commlineage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE commlineage_commlineage_id_seq OWNED BY commlineage.commlineage_id; -- -- Name: commlineage_commlineage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: commname; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE commname ( commname_id integer NOT NULL, commname text NOT NULL, source_id integer, dateentered date DEFAULT now() ); -- -- Name: commname_commname_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE commname_commname_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: commname_commname_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE commname_commname_id_seq OWNED BY commname.commname_id; -- -- Name: commname_commname_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: commstatus; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE commstatus ( commstatus_id integer NOT NULL, commconcept_id integer NOT NULL, source_id integer, commconceptstatus text NOT NULL, commparent_id integer, commlevel text, commpartycomments text, party_id integer NOT NULL, startdate date NOT NULL, stopdate date, accessioncode text ); -- -- Name: commstatus_commstatus_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE commstatus_commstatus_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: commstatus_commstatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE commstatus_commstatus_id_seq OWNED BY commstatus.commstatus_id; -- -- Name: commstatus_commstatus_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: commusage; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE commusage ( commusage_id integer NOT NULL, commname_id integer NOT NULL, commname text, commconcept_id integer, commnamestatus text, classsystem text, party_id integer, commstatus_id integer, usagestart date, usagestop date ); -- -- Name: commusage_commusage_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE commusage_commusage_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: commusage_commusage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE commusage_commusage_id_seq OWNED BY commusage.commusage_id; -- -- Name: commusage_commusage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: coordinates_coordinates_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE coordinates_coordinates_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: coordinates_coordinates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE coordinates_coordinates_id_seq OWNED BY coordinates.coordinates_id; -- -- Name: coordinates_coordinates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: coverindex; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE coverindex ( coverindex_id integer NOT NULL, covermethod_id integer NOT NULL, covercode text NOT NULL, upperlimit double precision, lowerlimit double precision, coverpercent double precision NOT NULL, indexdescription text ); -- -- Name: coverindex_coverindex_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE coverindex_coverindex_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: coverindex_coverindex_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE coverindex_coverindex_id_seq OWNED BY coverindex.coverindex_id; -- -- Name: coverindex_coverindex_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: covermethod; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE covermethod ( covermethod_id integer NOT NULL, source_id integer, covertype text NOT NULL, coverestimationmethod text, accessioncode text ); -- -- Name: covermethod_covermethod_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE covermethod_covermethod_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: covermethod_covermethod_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE covermethod_covermethod_id_seq OWNED BY covermethod.covermethod_id; -- -- Name: covermethod_covermethod_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: dba_preassignacccode_dba_requestnumber_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE dba_preassignacccode_dba_requestnumber_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: dba_preassignacccode_dba_requestnumber_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: definedvalue; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE definedvalue ( definedvalue_id integer NOT NULL, userdefined_id integer NOT NULL, tablerecord_id integer NOT NULL, definedvalue text ); -- -- Name: definedvalue_definedvalue_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE definedvalue_definedvalue_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: definedvalue_definedvalue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE definedvalue_definedvalue_id_seq OWNED BY definedvalue.definedvalue_id; -- -- Name: definedvalue_definedvalue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: disturbanceobs; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE disturbanceobs ( disturbanceobs_id integer NOT NULL, locationevent_id integer NOT NULL, disturbancetype text NOT NULL, disturbanceintensity text, disturbanceage double precision, disturbanceextent double precision, disturbancecomment text ); -- -- Name: disturbanceobs_disturbanceobs_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE disturbanceobs_disturbanceobs_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: disturbanceobs_disturbanceobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE disturbanceobs_disturbanceobs_id_seq OWNED BY disturbanceobs.disturbanceobs_id; -- -- Name: disturbanceobs_disturbanceobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: geoscrub_input; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE geoscrub_input ( country text, "stateProvince" text, county text, "decimalLatitude" double precision, "decimalLongitude" double precision ); -- -- Name: geoscrub_input_view; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW geoscrub_input_view AS SELECT DISTINCT place.country, place.stateprovince AS "stateProvince", place.county, coordinates.latitude_deg AS "decimalLatitude", coordinates.longitude_deg AS "decimalLongitude" FROM (place JOIN coordinates USING (coordinates_id)); -- -- Name: graphic; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE graphic ( graphic_id integer NOT NULL, locationevent_id integer NOT NULL, graphicname text, graphiclocation text, graphicdescription text, graphictype text, graphicdata oid, graphicdate date, accessioncode text ); -- -- Name: graphic_graphic_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE graphic_graphic_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: graphic_graphic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE graphic_graphic_id_seq OWNED BY graphic.graphic_id; -- -- Name: graphic_graphic_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: higher_plant_group_nodes; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE higher_plant_group_nodes ( higher_plant_group higher_plant_group NOT NULL, node_name text NOT NULL ); -- -- Name: location_location_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE location_location_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: location_location_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE location_location_id_seq OWNED BY location.location_id; -- -- Name: location_location_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: locationevent_locationevent_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE locationevent_locationevent_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: locationevent_locationevent_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE locationevent_locationevent_id_seq OWNED BY locationevent.locationevent_id; -- -- Name: locationevent_locationevent_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: locationeventcontributor; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE locationeventcontributor ( locationeventcontributor_id integer NOT NULL, locationevent_id integer NOT NULL, party_id integer NOT NULL, role role NOT NULL, contributiondate date ); -- -- Name: locationeventcontributor_locationeventcontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE locationeventcontributor_locationeventcontributor_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: locationeventcontributor_locationeventcontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE locationeventcontributor_locationeventcontributor_id_seq OWNED BY locationeventcontributor.locationeventcontributor_id; -- -- Name: locationeventcontributor_locationeventcontributor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: locationeventsynonym; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE locationeventsynonym ( locationeventsynonym_id integer NOT NULL, synonymlocationevent_id integer NOT NULL, primarylocationevent_id integer NOT NULL, party_id integer NOT NULL, role role NOT NULL, synonymcomment text, classstartdate date DEFAULT now() NOT NULL, classstopdate date, accessioncode text ); -- -- Name: locationeventsynonym_locationeventsynonym_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE locationeventsynonym_locationeventsynonym_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: locationeventsynonym_locationeventsynonym_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE locationeventsynonym_locationeventsynonym_id_seq OWNED BY locationeventsynonym.locationeventsynonym_id; -- -- Name: locationeventsynonym_locationeventsynonym_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: locationplace_locationplace_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE locationplace_locationplace_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: locationplace_locationplace_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE locationplace_locationplace_id_seq OWNED BY locationplace.locationplace_id; -- -- Name: locationplace_locationplace_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: method_method_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE method_method_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: method_method_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE method_method_id_seq OWNED BY method.method_id; -- -- Name: method_method_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: methodtaxonclass; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE methodtaxonclass ( methodtaxonclass_id integer NOT NULL, method_id integer NOT NULL, taxonlabel_id integer, included boolean NOT NULL, submethod_id integer, taxonclass taxonclass, CONSTRAINT methodtaxonclass_key_required CHECK (((taxonlabel_id IS NOT NULL) OR (taxonclass IS NOT NULL))) ); -- -- Name: COLUMN methodtaxonclass.included; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN methodtaxonclass.included IS 'Whether the method includes or excludes this taxon class.'; -- -- Name: COLUMN methodtaxonclass.submethod_id; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN methodtaxonclass.submethod_id IS 'The submethod used to sample just this taxon class, distinct from the main method.'; -- -- Name: methodtaxonclass_methodtaxonclass_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE methodtaxonclass_methodtaxonclass_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: methodtaxonclass_methodtaxonclass_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE methodtaxonclass_methodtaxonclass_id_seq OWNED BY methodtaxonclass.methodtaxonclass_id; -- -- Name: methodtaxonclass_methodtaxonclass_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: note; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE note ( note_id integer NOT NULL, notelink_id integer NOT NULL, party_id integer NOT NULL, role role NOT NULL, notetype text NOT NULL, notetext text NOT NULL, notedate date, accessioncode text ); -- -- Name: note_note_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE note_note_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: note_note_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE note_note_id_seq OWNED BY note.note_id; -- -- Name: note_note_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: notelink; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE notelink ( notelink_id integer NOT NULL, tablename text NOT NULL, attributename text, tablerecord integer NOT NULL ); -- -- Name: notelink_notelink_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE notelink_notelink_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: notelink_notelink_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE notelink_notelink_id_seq OWNED BY notelink.notelink_id; -- -- Name: notelink_notelink_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: party_party_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE party_party_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: party_party_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE party_party_id_seq OWNED BY party.party_id; -- -- Name: party_party_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: partymember; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE partymember ( partymember_id integer NOT NULL, parentparty_id integer NOT NULL, childparty_id integer NOT NULL, role role, memberstart date DEFAULT now() NOT NULL, memberstop date ); -- -- Name: partymember_partymember_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE partymember_partymember_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: partymember_partymember_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE partymember_partymember_id_seq OWNED BY partymember.partymember_id; -- -- Name: partymember_partymember_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: place_place_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE place_place_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: place_place_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE place_place_id_seq OWNED BY place.place_id; -- -- Name: place_place_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: placecorrelation; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE placecorrelation ( placecorrelation_id integer NOT NULL, parentplace_id integer NOT NULL, childplace_id integer NOT NULL, placeconvergence text NOT NULL ); -- -- Name: placecorrelation_placecorrelation_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE placecorrelation_placecorrelation_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: placecorrelation_placecorrelation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE placecorrelation_placecorrelation_id_seq OWNED BY placecorrelation.placecorrelation_id; -- -- Name: placecorrelation_placecorrelation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: placename; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE placename ( placename_id integer NOT NULL, parent_id integer, rank placerank NOT NULL, placename text NOT NULL ); -- -- Name: TABLE placename; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE placename IS 'An official, named placename. Can be at any level in the geographic hierarchy. Note that the placename stores only one rank (e.g. country) of the full path to the placename. The higher-level ranks are stored in the placename''s chain of parent_id ancestors. Equivalent to VegBank''s namedPlace table.'; -- -- Name: placename_ancestor; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE placename_ancestor ( placename_id integer NOT NULL, ancestor_id integer NOT NULL ); -- -- Name: TABLE placename_ancestor; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE placename_ancestor IS 'placename''s ancestor cross link table.'; -- -- Name: placename_placename_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE placename_placename_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: placename_placename_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE placename_placename_id_seq OWNED BY placename.placename_id; -- -- Name: placename_placename_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: plant; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE plant ( plant_id integer NOT NULL ); -- -- Name: TABLE plant; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE plant IS 'A physical, tagged plant.'; -- -- Name: plant_plant_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE plant_plant_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: plant_plant_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE plant_plant_id_seq OWNED BY plant.plant_id; -- -- Name: plant_plant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: plantobservation_plantobservation_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE plantobservation_plantobservation_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: plantobservation_plantobservation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE plantobservation_plantobservation_id_seq OWNED BY plantobservation.plantobservation_id; -- -- Name: plantobservation_plantobservation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: project; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE project ( project_id integer NOT NULL, source_id integer NOT NULL, sourceaccessioncode text, projectname text, projectdescription text, startdate date, stopdate date, accessioncode text, CONSTRAINT project_required_key CHECK (((sourceaccessioncode IS NOT NULL) OR (projectname IS NOT NULL))) ); -- -- Name: project_project_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE project_project_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: project_project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE project_project_id_seq OWNED BY project.project_id; -- -- Name: project_project_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: projectcontributor; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE projectcontributor ( projectcontributor_id integer NOT NULL, project_id integer NOT NULL, party_id integer NOT NULL, role role, surname text, cheatrole text ); -- -- Name: projectcontributor_projectcontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE projectcontributor_projectcontributor_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: projectcontributor_projectcontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE projectcontributor_projectcontributor_id_seq OWNED BY projectcontributor.projectcontributor_id; -- -- Name: projectcontributor_projectcontributor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: revision; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE revision ( revision_id integer NOT NULL, tablename text NOT NULL, tableattribute text NOT NULL, tablerecord integer NOT NULL, previousvaluetext text NOT NULL, previousvaluetype text NOT NULL, previousrevision_id integer, revisiondate date NOT NULL ); -- -- Name: revision_revision_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE revision_revision_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: revision_revision_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE revision_revision_id_seq OWNED BY revision.revision_id; -- -- Name: revision_revision_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: soilobs; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE soilobs ( soilobs_id integer NOT NULL, locationevent_id integer NOT NULL, horizon text DEFAULT 'unknown'::text NOT NULL, description text, depthtop_m double precision, depthbottom_m double precision, color text, texture text, organic_fraction double precision, sand_fraction double precision, silt_fraction double precision, clay_fraction double precision, coarse_fraction double precision, ph double precision, acidity_fraction double precision, basesaturation_fraction double precision, cationexchangecapacity_cmol_kg double precision, conductivity double precision, carbon_fraction double precision, phosphorus_fraction double precision, potassium_fraction double precision, magnesium_fraction double precision, nitrogen_fraction double precision, calcium_fraction double precision, sodium_fraction double precision ); -- -- Name: soilobs_soilobs_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE soilobs_soilobs_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: soilobs_soilobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE soilobs_soilobs_id_seq OWNED BY soilobs.soilobs_id; -- -- Name: soilobs_soilobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: soiltaxon; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE soiltaxon ( soiltaxon_id integer NOT NULL, soilcode text, soilname text, soillevel integer, soilparent_id integer, soilframework text, accessioncode text ); -- -- Name: soiltaxon_soiltaxon_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE soiltaxon_soiltaxon_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: soiltaxon_soiltaxon_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE soiltaxon_soiltaxon_id_seq OWNED BY soiltaxon.soiltaxon_id; -- -- Name: soiltaxon_soiltaxon_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: source_source_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE source_source_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: source_source_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE source_source_id_seq OWNED BY source.source_id; -- -- Name: source_source_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: sourcecontributor; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE sourcecontributor ( sourcecontributor_id integer NOT NULL, source_id integer NOT NULL, sourceparty_id integer NOT NULL, roletype text, "position" integer ); -- -- Name: sourcecontributor_sourcecontributor_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE sourcecontributor_sourcecontributor_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: sourcecontributor_sourcecontributor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE sourcecontributor_sourcecontributor_id_seq OWNED BY sourcecontributor.sourcecontributor_id; -- -- Name: sourcecontributor_sourcecontributor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: sourcejournal; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE sourcejournal ( sourcejournal_id integer NOT NULL, journal text NOT NULL, issn text, abbreviation text, accessioncode text ); -- -- Name: sourcejournal_sourcejournal_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE sourcejournal_sourcejournal_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: sourcejournal_sourcejournal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE sourcejournal_sourcejournal_id_seq OWNED BY sourcejournal.sourcejournal_id; -- -- Name: sourcejournal_sourcejournal_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: sourcename; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE sourcename ( sourcename_id integer NOT NULL, source_id integer NOT NULL, system text, name text NOT NULL, matched_source_id integer ); -- -- Name: sourcename_sourcename_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE sourcename_sourcename_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: sourcename_sourcename_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE sourcename_sourcename_id_seq OWNED BY sourcename.sourcename_id; -- -- Name: sourcename_sourcename_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: specimen; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE specimen ( specimen_id integer NOT NULL ); -- -- Name: TABLE specimen; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE specimen IS 'A physical specimen collected from a plant. Used to link replicates of the same specimen together.'; -- -- Name: specimen_specimen_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE specimen_specimen_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: specimen_specimen_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE specimen_specimen_id_seq OWNED BY specimen.specimen_id; -- -- Name: specimen_specimen_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: specimenreplicate; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE specimenreplicate ( specimenreplicate_id integer NOT NULL, source_id integer NOT NULL, sourceaccessioncode text, plantobservation_id integer, institution_id integer, collectioncode_dwc text, catalognumber_dwc text, description text, specimen_id integer, accessioncode text, CONSTRAINT specimenreplicate_required_key CHECK ((((plantobservation_id IS NOT NULL) OR (sourceaccessioncode IS NOT NULL)) OR (catalognumber_dwc IS NOT NULL))) ); -- -- Name: TABLE specimenreplicate; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE specimenreplicate IS 'A herbarium''s replicate of a specimen. Contains Darwin Core specimen data.'; -- -- Name: COLUMN specimenreplicate.institution_id; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN specimenreplicate.institution_id IS 'The institution (such as a museum) that the specimenreplicate is from.'; -- -- Name: COLUMN specimenreplicate.collectioncode_dwc; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN specimenreplicate.collectioncode_dwc IS 'The code for the collection that the specimenreplicate is from.'; -- -- Name: specimenreplicate_specimenreplicate_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE specimenreplicate_specimenreplicate_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: specimenreplicate_specimenreplicate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE specimenreplicate_specimenreplicate_id_seq OWNED BY specimenreplicate.specimenreplicate_id; -- -- Name: specimenreplicate_specimenreplicate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: stemobservation_stemobservation_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE stemobservation_stemobservation_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: stemobservation_stemobservation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE stemobservation_stemobservation_id_seq OWNED BY stemobservation.stemobservation_id; -- -- Name: stemobservation_stemobservation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: stratum; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE stratum ( stratum_id integer NOT NULL, locationevent_id integer NOT NULL, stratumheight double precision, stratumbase double precision, stratumcover double precision, area double precision, method_id integer ); -- -- Name: stratum_stratum_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE stratum_stratum_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: stratum_stratum_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE stratum_stratum_id_seq OWNED BY stratum.stratum_id; -- -- Name: stratum_stratum_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: taxonalt; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE taxonalt ( taxonalt_id integer NOT NULL, taxondetermination_id integer NOT NULL, taxonlabel_id integer NOT NULL, taxonaltfit text, taxonaltconfidence text, taxonaltnotes text ); -- -- Name: taxonalt_taxonalt_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE taxonalt_taxonalt_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: taxonalt_taxonalt_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE taxonalt_taxonalt_id_seq OWNED BY taxonalt.taxonalt_id; -- -- Name: taxonalt_taxonalt_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: taxonconcept; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE taxonconcept ( taxonlabel_id integer NOT NULL, concept_source_id integer ); -- -- Name: TABLE taxonconcept; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE taxonconcept IS 'A circumscribed taxon concept. This extends taxonlabel with information about who the taxon concept is according to.'; -- -- Name: COLUMN taxonconcept.concept_source_id; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonconcept.concept_source_id IS 'The entity that defined the taxon concept. This is who the taxon concept is according to. Equivalent to "Name sec. x".'; -- -- Name: taxonconcept_taxonlabel_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE taxonconcept_taxonlabel_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: taxonconcept_taxonlabel_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE taxonconcept_taxonlabel_id_seq OWNED BY taxonconcept.taxonlabel_id; -- -- Name: taxonconcept_taxonlabel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: taxoncorrelation; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE taxoncorrelation ( taxoncorrelation_id integer NOT NULL, taxonstatus_id integer NOT NULL, taxonlabel_id integer NOT NULL, plantconvergence text NOT NULL, correlationstart date NOT NULL, correlationstop date ); -- -- Name: taxoncorrelation_taxoncorrelation_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE taxoncorrelation_taxoncorrelation_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: taxoncorrelation_taxoncorrelation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE taxoncorrelation_taxoncorrelation_id_seq OWNED BY taxoncorrelation.taxoncorrelation_id; -- -- Name: taxoncorrelation_taxoncorrelation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: taxondetermination_taxondetermination_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE taxondetermination_taxondetermination_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: taxondetermination_taxondetermination_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE taxondetermination_taxondetermination_id_seq OWNED BY taxondetermination.taxondetermination_id; -- -- Name: taxondetermination_taxondetermination_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: taxonlabel_relationship; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE taxonlabel_relationship ( descendant_id integer NOT NULL, ancestor_id integer NOT NULL, relationship relationship DEFAULT 'is included in'::relationship NOT NULL ); -- -- Name: TABLE taxonlabel_relationship; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON TABLE taxonlabel_relationship IS 'Stores the accepted ancestors of a taxonlabel. Auto-populated, so should not be manually modified.'; -- -- Name: COLUMN taxonlabel_relationship.relationship; Type: COMMENT; Schema: public; Owner: - -- COMMENT ON COLUMN taxonlabel_relationship.relationship IS 'The type of relationship.'; -- -- Name: taxonlabel_taxonlabel_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE taxonlabel_taxonlabel_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: taxonlabel_taxonlabel_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE taxonlabel_taxonlabel_id_seq OWNED BY taxonlabel.taxonlabel_id; -- -- Name: taxonlabel_taxonlabel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: taxonlineage; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE taxonlineage ( taxonlineage_id integer NOT NULL, childtaxonstatus_id integer NOT NULL, parenttaxonstatus_id integer NOT NULL ); -- -- Name: taxonlineage_taxonlineage_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE taxonlineage_taxonlineage_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: taxonlineage_taxonlineage_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE taxonlineage_taxonlineage_id_seq OWNED BY taxonlineage.taxonlineage_id; -- -- Name: taxonlineage_taxonlineage_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: taxonoccurrence_taxonoccurrence_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE taxonoccurrence_taxonoccurrence_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: taxonoccurrence_taxonoccurrence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE taxonoccurrence_taxonoccurrence_id_seq OWNED BY taxonoccurrence.taxonoccurrence_id; -- -- Name: taxonoccurrence_taxonoccurrence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: taxonstatus; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE taxonstatus ( taxonstatus_id integer NOT NULL, taxonlabel_id integer NOT NULL, party_id integer, taxonlabelstatus text DEFAULT 'undetermined'::text NOT NULL, source_id integer, plantpartycomments text, startdate date, stopdate date, accessioncode text ); -- -- Name: taxonstatus_taxonstatus_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE taxonstatus_taxonstatus_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: taxonstatus_taxonstatus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE taxonstatus_taxonstatus_id_seq OWNED BY taxonstatus.taxonstatus_id; -- -- Name: taxonstatus_taxonstatus_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: taxonverbatim_taxonverbatim_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE taxonverbatim_taxonverbatim_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: taxonverbatim_taxonverbatim_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE taxonverbatim_taxonverbatim_id_seq OWNED BY taxonverbatim.taxonverbatim_id; -- -- Name: taxonverbatim_taxonverbatim_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: telephone; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE telephone ( telephone_id integer NOT NULL, party_id integer NOT NULL, phonenumber text NOT NULL, phonetype text NOT NULL ); -- -- Name: telephone_telephone_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE telephone_telephone_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: telephone_telephone_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE telephone_telephone_id_seq OWNED BY telephone.telephone_id; -- -- Name: telephone_telephone_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: threatened_taxonlabel_view; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW threatened_taxonlabel_view AS SELECT DISTINCT accepted_taxonlabel_descendant.descendant_id AS taxonlabel_id FROM ((taxonlabel datasource_taxonlabel JOIN taxonlabel accepted_taxonlabel ON ((accepted_taxonlabel.taxonlabel_id = datasource_taxonlabel.canon_label_id))) JOIN taxonlabel_relationship accepted_taxonlabel_descendant ON ((accepted_taxonlabel_descendant.ancestor_id = accepted_taxonlabel.taxonlabel_id))) WHERE (((datasource_taxonlabel.source_id = source_by_shortname('IUCN'::text)) AND (datasource_taxonlabel.taxonomicname IS NOT NULL)) AND (accepted_taxonlabel.rank >= 'species'::taxonrank)); -- -- Name: tnrs_input_name; Type: VIEW; Schema: public; Owner: - -- CREATE VIEW tnrs_input_name AS SELECT DISTINCT taxonlabel.taxonomicname FROM (taxonlabel LEFT JOIN "TNRS".tnrs ON ((tnrs."Name_submitted" = taxonlabel.taxonomicname))) WHERE (((NOT (taxonlabel.taxonomicname IS NULL)) AND (taxonlabel.matched_label_id IS NULL)) AND (tnrs."Name_submitted" IS NULL)) ORDER BY taxonlabel.taxonomicname; -- -- Name: trait; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE trait ( trait_id integer NOT NULL, stemobservation_id integer NOT NULL, type text NOT NULL, value text ); -- -- Name: trait_trait_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE trait_trait_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: trait_trait_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE trait_trait_id_seq OWNED BY trait.trait_id; -- -- Name: trait_trait_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: userdefined; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE userdefined ( userdefined_id integer NOT NULL, userdefinedname text NOT NULL, userdefinedmetadata text, userdefinedcategory text, userdefinedtype text DEFAULT 'text'::text NOT NULL, tablename text NOT NULL, accessioncode text ); -- -- Name: userdefined_userdefined_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE userdefined_userdefined_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: userdefined_userdefined_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE userdefined_userdefined_id_seq OWNED BY userdefined.userdefined_id; -- -- Name: userdefined_userdefined_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: voucher; Type: TABLE; Schema: public; Owner: -; Tablespace: -- CREATE TABLE voucher ( voucher_id integer NOT NULL, taxonoccurrence_id integer NOT NULL, specimenreplicate_id integer NOT NULL ); -- -- Name: voucher_voucher_id_seq; Type: SEQUENCE; Schema: public; Owner: - -- CREATE SEQUENCE voucher_voucher_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -- -- Name: voucher_voucher_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - -- ALTER SEQUENCE voucher_voucher_id_seq OWNED BY voucher.voucher_id; -- -- Name: voucher_voucher_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -- -- Name: address_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE address ALTER COLUMN address_id SET DEFAULT nextval('address_address_id_seq'::regclass); -- -- Name: aggregateoccurrence_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE aggregateoccurrence ALTER COLUMN aggregateoccurrence_id SET DEFAULT nextval('aggregateoccurrence_aggregateoccurrence_id_seq'::regclass); -- -- Name: classcontributor_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE classcontributor ALTER COLUMN classcontributor_id SET DEFAULT nextval('classcontributor_classcontributor_id_seq'::regclass); -- -- Name: commclass_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE commclass ALTER COLUMN commclass_id SET DEFAULT nextval('commclass_commclass_id_seq'::regclass); -- -- Name: commconcept_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE commconcept ALTER COLUMN commconcept_id SET DEFAULT nextval('commconcept_commconcept_id_seq'::regclass); -- -- Name: commcorrelation_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE commcorrelation ALTER COLUMN commcorrelation_id SET DEFAULT nextval('commcorrelation_commcorrelation_id_seq'::regclass); -- -- Name: commdetermination_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE commdetermination ALTER COLUMN commdetermination_id SET DEFAULT nextval('commdetermination_commdetermination_id_seq'::regclass); -- -- Name: commlineage_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE commlineage ALTER COLUMN commlineage_id SET DEFAULT nextval('commlineage_commlineage_id_seq'::regclass); -- -- Name: commname_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE commname ALTER COLUMN commname_id SET DEFAULT nextval('commname_commname_id_seq'::regclass); -- -- Name: commstatus_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE commstatus ALTER COLUMN commstatus_id SET DEFAULT nextval('commstatus_commstatus_id_seq'::regclass); -- -- Name: commusage_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE commusage ALTER COLUMN commusage_id SET DEFAULT nextval('commusage_commusage_id_seq'::regclass); -- -- Name: coordinates_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE coordinates ALTER COLUMN coordinates_id SET DEFAULT nextval('coordinates_coordinates_id_seq'::regclass); -- -- Name: coverindex_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE coverindex ALTER COLUMN coverindex_id SET DEFAULT nextval('coverindex_coverindex_id_seq'::regclass); -- -- Name: covermethod_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE covermethod ALTER COLUMN covermethod_id SET DEFAULT nextval('covermethod_covermethod_id_seq'::regclass); -- -- Name: definedvalue_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE definedvalue ALTER COLUMN definedvalue_id SET DEFAULT nextval('definedvalue_definedvalue_id_seq'::regclass); -- -- Name: disturbanceobs_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE disturbanceobs ALTER COLUMN disturbanceobs_id SET DEFAULT nextval('disturbanceobs_disturbanceobs_id_seq'::regclass); -- -- Name: graphic_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE graphic ALTER COLUMN graphic_id SET DEFAULT nextval('graphic_graphic_id_seq'::regclass); -- -- Name: location_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE location ALTER COLUMN location_id SET DEFAULT nextval('location_location_id_seq'::regclass); -- -- Name: locationevent_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE locationevent ALTER COLUMN locationevent_id SET DEFAULT nextval('locationevent_locationevent_id_seq'::regclass); -- -- Name: locationeventcontributor_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE locationeventcontributor ALTER COLUMN locationeventcontributor_id SET DEFAULT nextval('locationeventcontributor_locationeventcontributor_id_seq'::regclass); -- -- Name: locationeventsynonym_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE locationeventsynonym ALTER COLUMN locationeventsynonym_id SET DEFAULT nextval('locationeventsynonym_locationeventsynonym_id_seq'::regclass); -- -- Name: locationplace_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE locationplace ALTER COLUMN locationplace_id SET DEFAULT nextval('locationplace_locationplace_id_seq'::regclass); -- -- Name: method_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE method ALTER COLUMN method_id SET DEFAULT nextval('method_method_id_seq'::regclass); -- -- Name: methodtaxonclass_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE methodtaxonclass ALTER COLUMN methodtaxonclass_id SET DEFAULT nextval('methodtaxonclass_methodtaxonclass_id_seq'::regclass); -- -- Name: note_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE note ALTER COLUMN note_id SET DEFAULT nextval('note_note_id_seq'::regclass); -- -- Name: notelink_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE notelink ALTER COLUMN notelink_id SET DEFAULT nextval('notelink_notelink_id_seq'::regclass); -- -- Name: party_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE party ALTER COLUMN party_id SET DEFAULT nextval('party_party_id_seq'::regclass); -- -- Name: partymember_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE partymember ALTER COLUMN partymember_id SET DEFAULT nextval('partymember_partymember_id_seq'::regclass); -- -- Name: place_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE place ALTER COLUMN place_id SET DEFAULT nextval('place_place_id_seq'::regclass); -- -- Name: placecorrelation_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE placecorrelation ALTER COLUMN placecorrelation_id SET DEFAULT nextval('placecorrelation_placecorrelation_id_seq'::regclass); -- -- Name: placename_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE placename ALTER COLUMN placename_id SET DEFAULT nextval('placename_placename_id_seq'::regclass); -- -- Name: plant_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE plant ALTER COLUMN plant_id SET DEFAULT nextval('plant_plant_id_seq'::regclass); -- -- Name: plantobservation_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE plantobservation ALTER COLUMN plantobservation_id SET DEFAULT nextval('plantobservation_plantobservation_id_seq'::regclass); -- -- Name: project_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE project ALTER COLUMN project_id SET DEFAULT nextval('project_project_id_seq'::regclass); -- -- Name: projectcontributor_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE projectcontributor ALTER COLUMN projectcontributor_id SET DEFAULT nextval('projectcontributor_projectcontributor_id_seq'::regclass); -- -- Name: revision_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE revision ALTER COLUMN revision_id SET DEFAULT nextval('revision_revision_id_seq'::regclass); -- -- Name: soilobs_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE soilobs ALTER COLUMN soilobs_id SET DEFAULT nextval('soilobs_soilobs_id_seq'::regclass); -- -- Name: soiltaxon_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE soiltaxon ALTER COLUMN soiltaxon_id SET DEFAULT nextval('soiltaxon_soiltaxon_id_seq'::regclass); -- -- Name: source_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE source ALTER COLUMN source_id SET DEFAULT nextval('source_source_id_seq'::regclass); -- -- Name: sourcecontributor_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE sourcecontributor ALTER COLUMN sourcecontributor_id SET DEFAULT nextval('sourcecontributor_sourcecontributor_id_seq'::regclass); -- -- Name: sourcejournal_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE sourcejournal ALTER COLUMN sourcejournal_id SET DEFAULT nextval('sourcejournal_sourcejournal_id_seq'::regclass); -- -- Name: sourcename_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE sourcename ALTER COLUMN sourcename_id SET DEFAULT nextval('sourcename_sourcename_id_seq'::regclass); -- -- Name: specimen_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE specimen ALTER COLUMN specimen_id SET DEFAULT nextval('specimen_specimen_id_seq'::regclass); -- -- Name: specimenreplicate_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE specimenreplicate ALTER COLUMN specimenreplicate_id SET DEFAULT nextval('specimenreplicate_specimenreplicate_id_seq'::regclass); -- -- Name: stemobservation_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE stemobservation ALTER COLUMN stemobservation_id SET DEFAULT nextval('stemobservation_stemobservation_id_seq'::regclass); -- -- Name: stratum_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE stratum ALTER COLUMN stratum_id SET DEFAULT nextval('stratum_stratum_id_seq'::regclass); -- -- Name: taxonalt_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE taxonalt ALTER COLUMN taxonalt_id SET DEFAULT nextval('taxonalt_taxonalt_id_seq'::regclass); -- -- Name: taxoncorrelation_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE taxoncorrelation ALTER COLUMN taxoncorrelation_id SET DEFAULT nextval('taxoncorrelation_taxoncorrelation_id_seq'::regclass); -- -- Name: taxondetermination_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE taxondetermination ALTER COLUMN taxondetermination_id SET DEFAULT nextval('taxondetermination_taxondetermination_id_seq'::regclass); -- -- Name: taxonlabel_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE taxonlabel ALTER COLUMN taxonlabel_id SET DEFAULT nextval('taxonlabel_taxonlabel_id_seq'::regclass); -- -- Name: taxonlineage_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE taxonlineage ALTER COLUMN taxonlineage_id SET DEFAULT nextval('taxonlineage_taxonlineage_id_seq'::regclass); -- -- Name: taxonoccurrence_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE taxonoccurrence ALTER COLUMN taxonoccurrence_id SET DEFAULT nextval('taxonoccurrence_taxonoccurrence_id_seq'::regclass); -- -- Name: taxonstatus_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE taxonstatus ALTER COLUMN taxonstatus_id SET DEFAULT nextval('taxonstatus_taxonstatus_id_seq'::regclass); -- -- Name: taxonverbatim_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE taxonverbatim ALTER COLUMN taxonverbatim_id SET DEFAULT nextval('taxonverbatim_taxonverbatim_id_seq'::regclass); -- -- Name: telephone_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE telephone ALTER COLUMN telephone_id SET DEFAULT nextval('telephone_telephone_id_seq'::regclass); -- -- Name: trait_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE trait ALTER COLUMN trait_id SET DEFAULT nextval('trait_trait_id_seq'::regclass); -- -- Name: userdefined_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE userdefined ALTER COLUMN userdefined_id SET DEFAULT nextval('userdefined_userdefined_id_seq'::regclass); -- -- Name: voucher_id; Type: DEFAULT; Schema: public; Owner: - -- ALTER TABLE voucher ALTER COLUMN voucher_id SET DEFAULT nextval('voucher_voucher_id_seq'::regclass); -- -- Data for Name: address; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: aggregateoccurrence; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: analytical_aggregate; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: analytical_stem; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: classcontributor; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: commclass; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: commconcept; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: commcorrelation; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: commdetermination; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: commlineage; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: commname; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: commstatus; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: commusage; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: coordinates; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: coverindex; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: covermethod; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: definedvalue; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: disturbanceobs; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: family_higher_plant_group; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: geoscrub_input; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: graphic; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: higher_plant_group_nodes; Type: TABLE DATA; Schema: public; Owner: - -- INSERT INTO higher_plant_group_nodes VALUES ('bryophytes', 'Anthocerotophyta'); INSERT INTO higher_plant_group_nodes VALUES ('bryophytes', 'Marchantiophyta'); INSERT INTO higher_plant_group_nodes VALUES ('bryophytes', 'Bryophyta'); INSERT INTO higher_plant_group_nodes VALUES ('ferns and allies', 'Anthocerotophyta'); INSERT INTO higher_plant_group_nodes VALUES ('ferns and allies', 'Marchantiophyta'); INSERT INTO higher_plant_group_nodes VALUES ('ferns and allies', 'Bryophyta'); INSERT INTO higher_plant_group_nodes VALUES ('ferns and allies', 'Moniliformopses'); INSERT INTO higher_plant_group_nodes VALUES ('flowering plants', 'Magnoliophyta'); INSERT INTO higher_plant_group_nodes VALUES ('gymnosperms (conifers)', 'Coniferophyta'); INSERT INTO higher_plant_group_nodes VALUES ('gymnosperms (non-conifer)', 'Cycadophyta'); INSERT INTO higher_plant_group_nodes VALUES ('gymnosperms (non-conifer)', 'Ginkgophyta'); INSERT INTO higher_plant_group_nodes VALUES ('gymnosperms (non-conifer)', 'Gnetophyta'); -- -- Data for Name: location; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: locationevent; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: locationeventcontributor; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: locationeventsynonym; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: locationplace; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: method; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: methodtaxonclass; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: note; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: notelink; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: party; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: partymember; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: place; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: placecorrelation; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: placename; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: placename_ancestor; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: plant; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: plantobservation; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: project; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: projectcontributor; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: revision; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: soilobs; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: soiltaxon; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: source; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: sourcecontributor; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: sourcejournal; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: sourcename; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: specimen; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: specimenreplicate; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: stemobservation; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: stratum; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: taxonalt; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: taxonconcept; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: taxoncorrelation; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: taxondetermination; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: taxonlabel; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: taxonlabel_relationship; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: taxonlineage; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: taxonoccurrence; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: taxonstatus; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: taxonverbatim; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: telephone; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: threatened_taxonlabel; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: trait; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: userdefined; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Data for Name: voucher; Type: TABLE DATA; Schema: public; Owner: - -- -- -- Name: address_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY address ADD CONSTRAINT address_pkey PRIMARY KEY (address_id); -- -- Name: aggregateoccurrence_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY aggregateoccurrence ADD CONSTRAINT aggregateoccurrence_pkey PRIMARY KEY (aggregateoccurrence_id); -- -- Name: classcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY classcontributor ADD CONSTRAINT classcontributor_pkey PRIMARY KEY (classcontributor_id); -- -- Name: commclass_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY commclass ADD CONSTRAINT commclass_pkey PRIMARY KEY (commclass_id); -- -- Name: commconcept_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY commconcept ADD CONSTRAINT commconcept_pkey PRIMARY KEY (commconcept_id); -- -- Name: commconcept_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY commconcept ADD CONSTRAINT commconcept_unique UNIQUE (commname_id); -- -- Name: commcorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY commcorrelation ADD CONSTRAINT commcorrelation_pkey PRIMARY KEY (commcorrelation_id); -- -- Name: commdetermination_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY commdetermination ADD CONSTRAINT commdetermination_pkey PRIMARY KEY (commdetermination_id); -- -- Name: commdetermination_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY commdetermination ADD CONSTRAINT commdetermination_unique UNIQUE (commclass_id, commconcept_id); -- -- Name: commlineage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY commlineage ADD CONSTRAINT commlineage_pkey PRIMARY KEY (commlineage_id); -- -- Name: commname_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY commname ADD CONSTRAINT commname_pkey PRIMARY KEY (commname_id); -- -- Name: commname_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY commname ADD CONSTRAINT commname_unique UNIQUE (commname); -- -- Name: commstatus_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY commstatus ADD CONSTRAINT commstatus_pkey PRIMARY KEY (commstatus_id); -- -- Name: commusage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY commusage ADD CONSTRAINT commusage_pkey PRIMARY KEY (commusage_id); -- -- Name: coordinates_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY coordinates ADD CONSTRAINT coordinates_pkey PRIMARY KEY (coordinates_id); -- -- Name: coverindex_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY coverindex ADD CONSTRAINT coverindex_pkey PRIMARY KEY (coverindex_id); -- -- Name: covermethod_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY covermethod ADD CONSTRAINT covermethod_pkey PRIMARY KEY (covermethod_id); -- -- Name: definedvalue_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY definedvalue ADD CONSTRAINT definedvalue_pkey PRIMARY KEY (definedvalue_id); -- -- Name: definedvalue_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY definedvalue ADD CONSTRAINT definedvalue_unique UNIQUE (userdefined_id, tablerecord_id); -- -- Name: disturbanceobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY disturbanceobs ADD CONSTRAINT disturbanceobs_pkey PRIMARY KEY (disturbanceobs_id); -- -- Name: family_higher_plant_group_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY family_higher_plant_group ADD CONSTRAINT family_higher_plant_group_pkey PRIMARY KEY (family); -- -- Name: graphic_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY graphic ADD CONSTRAINT graphic_pkey PRIMARY KEY (graphic_id); -- -- Name: higher_plant_group_node_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY higher_plant_group_nodes ADD CONSTRAINT higher_plant_group_node_pkey PRIMARY KEY (higher_plant_group, node_name); -- -- Name: location_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY location ADD CONSTRAINT location_pkey PRIMARY KEY (location_id); -- -- Name: locationevent_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY locationevent ADD CONSTRAINT locationevent_pkey PRIMARY KEY (locationevent_id); -- -- Name: locationeventcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY locationeventcontributor ADD CONSTRAINT locationeventcontributor_pkey PRIMARY KEY (locationeventcontributor_id); -- -- Name: locationeventsynonym_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY locationeventsynonym ADD CONSTRAINT locationeventsynonym_pkey PRIMARY KEY (locationeventsynonym_id); -- -- Name: locationplace_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY locationplace ADD CONSTRAINT locationplace_pkey PRIMARY KEY (locationplace_id); -- -- Name: method_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY method ADD CONSTRAINT method_pkey PRIMARY KEY (method_id); -- -- Name: methodtaxonclass_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY methodtaxonclass ADD CONSTRAINT methodtaxonclass_pkey PRIMARY KEY (methodtaxonclass_id); -- -- Name: methodtaxonclass_unique_description; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY methodtaxonclass ADD CONSTRAINT methodtaxonclass_unique_description UNIQUE (method_id, taxonclass); -- -- Name: methodtaxonclass_unique_taxonlabel_id; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY methodtaxonclass ADD CONSTRAINT methodtaxonclass_unique_taxonlabel_id UNIQUE (method_id, taxonlabel_id); -- -- Name: note_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY note ADD CONSTRAINT note_pkey PRIMARY KEY (note_id); -- -- Name: notelink_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY notelink ADD CONSTRAINT notelink_pkey PRIMARY KEY (notelink_id); -- -- Name: party_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY party ADD CONSTRAINT party_pkey PRIMARY KEY (party_id); -- -- Name: partymember_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY partymember ADD CONSTRAINT partymember_pkey PRIMARY KEY (partymember_id); -- -- Name: place_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY place ADD CONSTRAINT place_pkey PRIMARY KEY (place_id); -- -- Name: placecorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY placecorrelation ADD CONSTRAINT placecorrelation_pkey PRIMARY KEY (placecorrelation_id); -- -- Name: placename_ancestor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY placename_ancestor ADD CONSTRAINT placename_ancestor_pkey PRIMARY KEY (placename_id, ancestor_id); -- -- Name: placename_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY placename ADD CONSTRAINT placename_pkey PRIMARY KEY (placename_id); -- -- Name: plant_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY plant ADD CONSTRAINT plant_pkey PRIMARY KEY (plant_id); -- -- Name: plantobservation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY plantobservation ADD CONSTRAINT plantobservation_pkey PRIMARY KEY (plantobservation_id); -- -- Name: project_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY project ADD CONSTRAINT project_pkey PRIMARY KEY (project_id); -- -- Name: project_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY project ADD CONSTRAINT project_unique UNIQUE (source_id, projectname); -- -- Name: projectcontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY projectcontributor ADD CONSTRAINT projectcontributor_pkey PRIMARY KEY (projectcontributor_id); -- -- Name: revision_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY revision ADD CONSTRAINT revision_pkey PRIMARY KEY (revision_id); -- -- Name: soilobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY soilobs ADD CONSTRAINT soilobs_pkey PRIMARY KEY (soilobs_id); -- -- Name: soilobs_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY soilobs ADD CONSTRAINT soilobs_unique UNIQUE (locationevent_id); -- -- Name: soiltaxon_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY soiltaxon ADD CONSTRAINT soiltaxon_pkey PRIMARY KEY (soiltaxon_id); -- -- Name: source_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY source ADD CONSTRAINT source_pkey PRIMARY KEY (source_id); -- -- Name: sourcecontributor_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY sourcecontributor ADD CONSTRAINT sourcecontributor_pkey PRIMARY KEY (sourcecontributor_id); -- -- Name: sourcejournal_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY sourcejournal ADD CONSTRAINT sourcejournal_pkey PRIMARY KEY (sourcejournal_id); -- -- Name: sourcename_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY sourcename ADD CONSTRAINT sourcename_pkey PRIMARY KEY (sourcename_id); -- -- Name: specimen_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY specimen ADD CONSTRAINT specimen_pkey PRIMARY KEY (specimen_id); -- -- Name: specimenreplicate_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY specimenreplicate ADD CONSTRAINT specimenreplicate_pkey PRIMARY KEY (specimenreplicate_id); -- -- Name: stemobservation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY stemobservation ADD CONSTRAINT stemobservation_pkey PRIMARY KEY (stemobservation_id); -- -- Name: stratum_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY stratum ADD CONSTRAINT stratum_pkey PRIMARY KEY (stratum_id); -- -- Name: taxonalt_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxonalt ADD CONSTRAINT taxonalt_pkey PRIMARY KEY (taxonalt_id); -- -- Name: taxonconcept_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxonconcept ADD CONSTRAINT taxonconcept_pkey PRIMARY KEY (taxonlabel_id); -- -- Name: taxoncorrelation_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxoncorrelation ADD CONSTRAINT taxoncorrelation_pkey PRIMARY KEY (taxoncorrelation_id); -- -- Name: taxondetermination_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxondetermination ADD CONSTRAINT taxondetermination_pkey PRIMARY KEY (taxondetermination_id); -- -- Name: taxonlabel_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxonlabel ADD CONSTRAINT taxonlabel_pkey PRIMARY KEY (taxonlabel_id); -- -- Name: taxonlabel_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxonlabel_relationship ADD CONSTRAINT taxonlabel_relationship_pkey PRIMARY KEY (descendant_id, ancestor_id); -- -- Name: taxonlineage_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxonlineage ADD CONSTRAINT taxonlineage_pkey PRIMARY KEY (taxonlineage_id); -- -- Name: taxonoccurrence_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxonoccurrence ADD CONSTRAINT taxonoccurrence_pkey PRIMARY KEY (taxonoccurrence_id); -- -- Name: taxonstatus_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxonstatus ADD CONSTRAINT taxonstatus_pkey PRIMARY KEY (taxonstatus_id); -- -- Name: taxonstatus_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxonstatus ADD CONSTRAINT taxonstatus_unique UNIQUE (taxonlabel_id, party_id); -- -- Name: taxonverbatim_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxonverbatim ADD CONSTRAINT taxonverbatim_pkey PRIMARY KEY (taxonverbatim_id); -- -- Name: taxonverbatim_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY taxonverbatim ADD CONSTRAINT taxonverbatim_unique UNIQUE (taxonlabel_id); -- -- Name: telephone_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY telephone ADD CONSTRAINT telephone_pkey PRIMARY KEY (telephone_id); -- -- Name: threatened_taxonlabel_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY threatened_taxonlabel ADD CONSTRAINT threatened_taxonlabel_pkey PRIMARY KEY (taxonlabel_id); -- -- Name: trait_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY trait ADD CONSTRAINT trait_pkey PRIMARY KEY (trait_id); -- -- Name: userdefined_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY userdefined ADD CONSTRAINT userdefined_pkey PRIMARY KEY (userdefined_id); -- -- Name: userdefined_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY userdefined ADD CONSTRAINT userdefined_unique UNIQUE (tablename, userdefinedname); -- -- Name: voucher_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY voucher ADD CONSTRAINT voucher_pkey PRIMARY KEY (voucher_id); -- -- Name: voucher_unique; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: -- ALTER TABLE ONLY voucher ADD CONSTRAINT voucher_unique UNIQUE (taxonoccurrence_id, specimenreplicate_id); -- -- Name: aggregateoccurrence_taxonoccurrence; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX aggregateoccurrence_taxonoccurrence ON aggregateoccurrence USING btree (taxonoccurrence_id); -- -- Name: aggregateoccurrence_taxonoccurrence_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX aggregateoccurrence_taxonoccurrence_1_to_1 ON aggregateoccurrence USING btree (taxonoccurrence_id) WHERE (sourceaccessioncode IS NULL); -- -- Name: aggregateoccurrence_unique_within_creator; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX aggregateoccurrence_unique_within_creator ON aggregateoccurrence USING btree (source_id, (COALESCE(sourceaccessioncode, '\\N'::text))) WHERE (sourceaccessioncode IS NOT NULL); -- -- Name: commclass_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX commclass_accessioncode_index ON commclass USING btree (accessioncode); -- -- Name: commclass_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX commclass_unique ON commclass USING btree (locationevent_id, (COALESCE(classnotes, '\\N'::text))); -- -- Name: commconcept_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX commconcept_accessioncode_index ON commconcept USING btree (accessioncode); -- -- Name: commstatus_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX commstatus_accessioncode_index ON commstatus USING btree (accessioncode); -- -- Name: coordinates_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX coordinates_unique ON coordinates USING btree (source_id, latitude_deg, longitude_deg, (COALESCE(verbatimlatitude, '\\N'::text)), (COALESCE(verbatimlongitude, '\\N'::text)), (COALESCE(verbatimcoordinates, '\\N'::text)), (COALESCE(footprintgeometry_dwc, '\\N'::text))); -- -- Name: covermethod_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX covermethod_accessioncode_index ON covermethod USING btree (accessioncode); -- -- Name: graphic_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX graphic_accessioncode_index ON graphic USING btree (accessioncode); -- -- Name: location_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX location_accessioncode_index ON location USING btree (accessioncode); -- -- Name: location_creator; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX location_creator ON location USING btree (source_id); -- -- Name: location_parent; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX location_parent ON location USING btree (parent_id); -- -- Name: location_unique_within_creator_by_authorlocationcode; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX location_unique_within_creator_by_authorlocationcode ON location USING btree (source_id, (COALESCE(authorlocationcode, '\\N'::text))) WHERE (((authorlocationcode IS NOT NULL) AND (parent_id IS NULL)) AND (sourceaccessioncode IS NULL)); -- -- Name: location_unique_within_creator_by_sourceaccessioncode; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX location_unique_within_creator_by_sourceaccessioncode ON location USING btree (source_id, (COALESCE(sourceaccessioncode, '\\N'::text))) WHERE (sourceaccessioncode IS NOT NULL); -- -- Name: location_unique_within_parent; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX location_unique_within_parent ON location USING btree ((COALESCE(parent_id, 2147483647)), (COALESCE(authorlocationcode, '\\N'::text)), (COALESCE(sublocationxposition_m, 'NaN'::double precision)), (COALESCE(sublocationyposition_m, 'NaN'::double precision))) WHERE ((parent_id IS NOT NULL) AND (sourceaccessioncode IS NULL)); -- -- Name: locationevent_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX locationevent_accessioncode_index ON locationevent USING btree (accessioncode); -- -- Name: locationevent_location; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX locationevent_location ON locationevent USING btree (location_id); -- -- Name: locationevent_unique_within_creator; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX locationevent_unique_within_creator ON locationevent USING btree (source_id, (COALESCE(sourceaccessioncode, '\\N'::text))) WHERE (sourceaccessioncode IS NOT NULL); -- -- Name: locationevent_unique_within_location; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX locationevent_unique_within_location ON locationevent USING btree (location_id, (COALESCE(authoreventcode, '\\N'::text)), (COALESCE(obsstartdate, 'infinity'::date))) WHERE ((parent_id IS NULL) AND (sourceaccessioncode IS NULL)); -- -- Name: locationevent_unique_within_parent_by_authoreventcode; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX locationevent_unique_within_parent_by_authoreventcode ON locationevent USING btree ((COALESCE(parent_id, 2147483647)), (COALESCE(authoreventcode, '\\N'::text))) WHERE ((parent_id IS NOT NULL) AND (authoreventcode IS NOT NULL)); -- -- Name: locationevent_unique_within_parent_by_location; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX locationevent_unique_within_parent_by_location ON locationevent USING btree ((COALESCE(parent_id, 2147483647)), location_id) WHERE (parent_id IS NOT NULL); -- -- Name: locationevent_unique_within_project; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX locationevent_unique_within_project ON locationevent USING btree ((COALESCE(project_id, 2147483647)), (COALESCE(authoreventcode, '\\N'::text)), (COALESCE(obsstartdate, 'infinity'::date))) WHERE ((((parent_id IS NULL) AND (project_id IS NOT NULL)) AND (authoreventcode IS NOT NULL)) AND (obsstartdate IS NOT NULL)); -- -- Name: locationeventsynonym_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX locationeventsynonym_accessioncode_index ON locationeventsynonym USING btree (accessioncode); -- -- Name: locationplace_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX locationplace_unique ON locationplace USING btree (location_id, place_id, (COALESCE(identifier_id, 2147483647))); -- -- Name: method_accessioncode; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX method_accessioncode ON method USING btree (accessioncode); -- -- Name: method_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX method_unique ON method USING btree (source_id, (COALESCE(name, '\\N'::text)), (COALESCE(description, '\\N'::text)), (COALESCE(observationmeasure, '\\N'::text))); -- -- Name: note_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX note_accessioncode_index ON note USING btree (accessioncode); -- -- Name: party_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX party_accessioncode_index ON party USING btree (accessioncode); -- -- Name: party_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX party_unique ON party USING btree (source_id, (COALESCE(organizationname, '\\N'::text)), (COALESCE(fullname, '\\N'::text)), (COALESCE(surname, '\\N'::text)), (COALESCE(givenname, '\\N'::text)), (COALESCE(middlename, '\\N'::text)), (COALESCE(suffix, '\\N'::text))); -- -- Name: place_matched_place_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX place_matched_place_id_idx ON place USING btree (matched_place_id); -- -- Name: place_unique_within_creator_by_code; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX place_unique_within_creator_by_code ON place USING btree (source_id, (COALESCE(placecode, '\\N'::text))) WHERE (placecode IS NOT NULL); -- -- Name: place_unique_within_creator_by_name; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX place_unique_within_creator_by_name ON place USING btree (source_id, (COALESCE(continent, '\\N'::text)), (COALESCE(country, '\\N'::text)), (COALESCE(stateprovince, '\\N'::text)), (COALESCE(county, '\\N'::text)), (COALESCE(coordinates_id, 2147483647))) WHERE (placecode IS NULL); -- -- Name: placename_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX placename_unique ON placename USING btree ((COALESCE(parent_id, 2147483647)), placename, rank); -- -- Name: plantobservation_aggregateoccurrence_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX plantobservation_aggregateoccurrence_1_to_1 ON plantobservation USING btree (aggregateoccurrence_id); -- -- Name: plantobservation_unique_within_creator; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX plantobservation_unique_within_creator ON plantobservation USING btree (source_id, (COALESCE(sourceaccessioncode, '\\N'::text))) WHERE (sourceaccessioncode IS NOT NULL); -- -- Name: project_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX project_accessioncode_index ON project USING btree (accessioncode); -- -- Name: project_unique_name_date; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX project_unique_name_date ON project USING btree (source_id, (COALESCE(projectname, '\\N'::text)), (COALESCE(startdate, 'infinity'::date))) WHERE (sourceaccessioncode IS NULL); -- -- Name: project_unique_within_creator; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX project_unique_within_creator ON project USING btree (source_id, (COALESCE(sourceaccessioncode, '\\N'::text))) WHERE (sourceaccessioncode IS NOT NULL); -- -- Name: soiltaxon_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX soiltaxon_accessioncode_index ON soiltaxon USING btree (accessioncode); -- -- Name: source_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX source_accessioncode_index ON source USING btree (accessioncode); -- -- Name: source_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX source_unique ON source USING btree ((COALESCE(shortname, '\\N'::text))); -- -- Name: sourcejournal_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX sourcejournal_accessioncode_index ON sourcejournal USING btree (accessioncode); -- -- Name: sourcename_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX sourcename_unique ON sourcename USING btree (source_id, (COALESCE(name, '\\N'::text))); -- -- Name: specimenreplicate_plantobservation; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX specimenreplicate_plantobservation ON specimenreplicate USING btree (plantobservation_id); -- -- Name: specimenreplicate_plantobservation_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX specimenreplicate_plantobservation_1_to_1 ON specimenreplicate USING btree ((COALESCE(plantobservation_id, 2147483647))) WHERE (((plantobservation_id IS NOT NULL) AND (sourceaccessioncode IS NULL)) AND (catalognumber_dwc IS NULL)); -- -- Name: specimenreplicate_unique_catalognumber; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX specimenreplicate_unique_catalognumber ON specimenreplicate USING btree (source_id, (COALESCE(institution_id, 2147483647)), (COALESCE(collectioncode_dwc, '\\N'::text)), (COALESCE(catalognumber_dwc, '\\N'::text)), (COALESCE(plantobservation_id, 2147483647))) WHERE ((catalognumber_dwc IS NOT NULL) AND (sourceaccessioncode IS NULL)); -- -- Name: specimenreplicate_unique_within_creator; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX specimenreplicate_unique_within_creator ON specimenreplicate USING btree (source_id, (COALESCE(sourceaccessioncode, '\\N'::text))) WHERE (sourceaccessioncode IS NOT NULL); -- -- Name: stemobservation_plantobservation_1_to_1; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX stemobservation_plantobservation_1_to_1 ON stemobservation USING btree (plantobservation_id) WHERE ((sourceaccessioncode IS NULL) AND (authorstemcode IS NULL)); -- -- Name: stemobservation_plantobservation_id; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX stemobservation_plantobservation_id ON stemobservation USING btree (plantobservation_id); -- -- Name: stemobservation_unique_within_creator; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX stemobservation_unique_within_creator ON stemobservation USING btree (source_id, (COALESCE(sourceaccessioncode, '\\N'::text))) WHERE (sourceaccessioncode IS NOT NULL); -- -- Name: stemobservation_unique_within_plantobservation; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX stemobservation_unique_within_plantobservation ON stemobservation USING btree (plantobservation_id, (COALESCE(authorstemcode, '\\N'::text)), (COALESCE(tag, '\\N'::text))) WHERE (sourceaccessioncode IS NULL); -- -- Name: taxondetermination_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX taxondetermination_accessioncode_index ON taxondetermination USING btree (accessioncode); -- -- Name: taxondetermination_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX taxondetermination_unique ON taxondetermination USING btree (taxonoccurrence_id, isoriginal, role, (COALESCE(party_id, 2147483647)), taxonverbatim_id); -- -- Name: taxonlabel_0_unique_identifying_name; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX taxonlabel_0_unique_identifying_name ON taxonlabel USING btree (source_id, (COALESCE(taxonomicname, '\\N'::text))) WHERE (taxonomicname IS NOT NULL); -- -- Name: taxonlabel_1_unique_sourceaccessioncode; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX taxonlabel_1_unique_sourceaccessioncode ON taxonlabel USING btree (source_id, (COALESCE(sourceaccessioncode, '\\N'::text))) WHERE (sourceaccessioncode IS NOT NULL); -- -- Name: taxonlabel_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX taxonlabel_accessioncode_index ON taxonlabel USING btree (accessioncode); -- -- Name: taxonlabel_matched_label_id_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX taxonlabel_matched_label_id_idx ON taxonlabel USING btree (matched_label_id); -- -- Name: taxonlabel_relationship_descendants; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX taxonlabel_relationship_descendants ON taxonlabel_relationship USING btree (ancestor_id, descendant_id); -- -- Name: taxonlabel_unique; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX taxonlabel_unique ON taxonlabel USING btree ((COALESCE(parent_id, 2147483647)), (COALESCE(taxonepithet, '\\N'::text)), (COALESCE(rank, 'unknown'::taxonrank)), source_id, (COALESCE(sourceaccessioncode, '\\N'::text)), (COALESCE(taxonomicname, '\\N'::text))); -- -- Name: taxonoccurrence_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX taxonoccurrence_accessioncode_index ON taxonoccurrence USING btree (accessioncode); -- -- Name: taxonoccurrence_locationevent; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE INDEX taxonoccurrence_locationevent ON taxonoccurrence USING btree (locationevent_id); -- -- Name: taxonoccurrence_unique_within_creator; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX taxonoccurrence_unique_within_creator ON taxonoccurrence USING btree (source_id, (COALESCE(sourceaccessioncode, '\\N'::text))) WHERE (sourceaccessioncode IS NOT NULL); -- -- Name: taxonoccurrence_unique_within_locationevent; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX taxonoccurrence_unique_within_locationevent ON taxonoccurrence USING btree ((COALESCE(locationevent_id, 2147483647)), (COALESCE(authortaxoncode, '\\N'::text))) WHERE (sourceaccessioncode IS NULL); -- -- Name: taxonstatus_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX taxonstatus_accessioncode_index ON taxonstatus USING btree (accessioncode); -- -- Name: userdefined_accessioncode_index; Type: INDEX; Schema: public; Owner: -; Tablespace: -- CREATE UNIQUE INDEX userdefined_accessioncode_index ON userdefined USING btree (accessioncode); -- -- Name: party_source_id_self_ref; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER party_source_id_self_ref BEFORE INSERT OR UPDATE ON party FOR EACH ROW EXECUTE PROCEDURE party_source_id_self_ref(); -- -- Name: place_matched_place_id_self_ref; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER place_matched_place_id_self_ref BEFORE INSERT OR UPDATE ON place FOR EACH ROW EXECUTE PROCEDURE place_matched_place_id_self_ref(); -- -- Name: place_set_canon_place_id_on_insert; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER place_set_canon_place_id_on_insert BEFORE INSERT ON place FOR EACH ROW EXECUTE PROCEDURE place_set_canon_place_id_on_insert(); -- -- Name: place_set_canon_place_id_on_update; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER place_set_canon_place_id_on_update BEFORE UPDATE ON place FOR EACH ROW EXECUTE PROCEDURE place_set_canon_place_id_on_update(); -- -- Name: placename_update_ancestors; Type: TRIGGER; Schema: public; Owner: - -- CREATE CONSTRAINT TRIGGER placename_update_ancestors AFTER INSERT OR UPDATE ON placename DEFERRABLE INITIALLY DEFERRED FOR EACH ROW EXECUTE PROCEDURE placename_update_ancestors(); -- -- Name: plantobservation_aggregateoccurrence_count_1; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER plantobservation_aggregateoccurrence_count_1 AFTER INSERT OR UPDATE ON plantobservation FOR EACH ROW EXECUTE PROCEDURE plantobservation_aggregateoccurrence_count_1(); -- -- Name: taxonlabel_0_matched_label_id_self_ref; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER taxonlabel_0_matched_label_id_self_ref BEFORE INSERT OR UPDATE ON taxonlabel FOR EACH ROW EXECUTE PROCEDURE taxonlabel_0_matched_label_id_self_ref(); -- -- Name: taxonlabel_1_matched_label_min_fit; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER taxonlabel_1_matched_label_min_fit BEFORE INSERT OR UPDATE ON taxonlabel FOR EACH ROW EXECUTE PROCEDURE taxonlabel_1_matched_label_min_fit(); -- -- Name: taxonlabel_2_set_canon_label_id_on_insert; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER taxonlabel_2_set_canon_label_id_on_insert BEFORE INSERT ON taxonlabel FOR EACH ROW EXECUTE PROCEDURE taxonlabel_2_set_canon_label_id_on_insert(); -- -- Name: taxonlabel_2_set_canon_label_id_on_update; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER taxonlabel_2_set_canon_label_id_on_update BEFORE UPDATE ON taxonlabel FOR EACH ROW EXECUTE PROCEDURE taxonlabel_2_set_canon_label_id_on_update(); -- -- Name: taxonlabel_3_parent_id_avoid_self_ref; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER taxonlabel_3_parent_id_avoid_self_ref BEFORE INSERT OR UPDATE ON taxonlabel FOR EACH ROW EXECUTE PROCEDURE taxonlabel_3_parent_id_avoid_self_ref(); -- -- Name: taxonlabel_update_ancestors_on_insert; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER taxonlabel_update_ancestors_on_insert AFTER INSERT ON taxonlabel FOR EACH ROW EXECUTE PROCEDURE taxonlabel_update_ancestors_on_insert(); -- -- Name: taxonlabel_update_ancestors_on_update; Type: TRIGGER; Schema: public; Owner: - -- CREATE TRIGGER taxonlabel_update_ancestors_on_update AFTER UPDATE ON taxonlabel FOR EACH ROW EXECUTE PROCEDURE taxonlabel_update_ancestors_on_update(); -- -- Name: address_organization_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY address ADD CONSTRAINT address_organization_id_fkey FOREIGN KEY (organization_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: address_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY address ADD CONSTRAINT address_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: aggregateoccurrence_coverindex_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY aggregateoccurrence ADD CONSTRAINT aggregateoccurrence_coverindex_id_fkey FOREIGN KEY (coverindex_id) REFERENCES coverindex(coverindex_id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: aggregateoccurrence_method_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY aggregateoccurrence ADD CONSTRAINT aggregateoccurrence_method_id_fkey FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: aggregateoccurrence_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY aggregateoccurrence ADD CONSTRAINT aggregateoccurrence_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: aggregateoccurrence_stratum_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY aggregateoccurrence ADD CONSTRAINT aggregateoccurrence_stratum_id_fkey FOREIGN KEY (stratum_id) REFERENCES stratum(stratum_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: aggregateoccurrence_taxonoccurrence_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY aggregateoccurrence ADD CONSTRAINT aggregateoccurrence_taxonoccurrence_id_fkey FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: classcontributor_commclass_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY classcontributor ADD CONSTRAINT classcontributor_commclass_id_fkey FOREIGN KEY (commclass_id) REFERENCES commclass(commclass_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: classcontributor_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY classcontributor ADD CONSTRAINT classcontributor_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commclass_classpublication_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commclass ADD CONSTRAINT commclass_classpublication_id_fkey FOREIGN KEY (classpublication_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commclass_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commclass ADD CONSTRAINT commclass_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commconcept_commname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commconcept ADD CONSTRAINT commconcept_commname_id_fkey FOREIGN KEY (commname_id) REFERENCES commname(commname_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commconcept_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commconcept ADD CONSTRAINT commconcept_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commcorrelation_commconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commcorrelation ADD CONSTRAINT commcorrelation_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commcorrelation_commstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commcorrelation ADD CONSTRAINT commcorrelation_commstatus_id_fkey FOREIGN KEY (commstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commdetermination_commauthority_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commdetermination ADD CONSTRAINT commdetermination_commauthority_id_fkey FOREIGN KEY (commauthority_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commdetermination_commclass_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commdetermination ADD CONSTRAINT commdetermination_commclass_id_fkey FOREIGN KEY (commclass_id) REFERENCES commclass(commclass_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commdetermination_commconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commdetermination ADD CONSTRAINT commdetermination_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commlineage_childcommstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commlineage ADD CONSTRAINT commlineage_childcommstatus_id_fkey FOREIGN KEY (childcommstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commlineage_parentcommstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commlineage ADD CONSTRAINT commlineage_parentcommstatus_id_fkey FOREIGN KEY (parentcommstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commname_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commname ADD CONSTRAINT commname_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commstatus_commconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commstatus ADD CONSTRAINT commstatus_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commstatus_commparent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commstatus ADD CONSTRAINT commstatus_commparent_id_fkey FOREIGN KEY (commparent_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commstatus_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commstatus ADD CONSTRAINT commstatus_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commstatus_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commstatus ADD CONSTRAINT commstatus_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commusage_commconcept_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commusage ADD CONSTRAINT commusage_commconcept_id_fkey FOREIGN KEY (commconcept_id) REFERENCES commconcept(commconcept_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commusage_commname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commusage ADD CONSTRAINT commusage_commname_id_fkey FOREIGN KEY (commname_id) REFERENCES commname(commname_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commusage_commstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commusage ADD CONSTRAINT commusage_commstatus_id_fkey FOREIGN KEY (commstatus_id) REFERENCES commstatus(commstatus_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: commusage_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY commusage ADD CONSTRAINT commusage_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: coordinates_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY coordinates ADD CONSTRAINT coordinates_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: coverindex_covermethod_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY coverindex ADD CONSTRAINT coverindex_covermethod_id_fkey FOREIGN KEY (covermethod_id) REFERENCES covermethod(covermethod_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: covermethod_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY covermethod ADD CONSTRAINT covermethod_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: definedvalue_userdefined_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY definedvalue ADD CONSTRAINT definedvalue_userdefined_id_fkey FOREIGN KEY (userdefined_id) REFERENCES userdefined(userdefined_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: disturbanceobs_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY disturbanceobs ADD CONSTRAINT disturbanceobs_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: graphic_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY graphic ADD CONSTRAINT graphic_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: location_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY location ADD CONSTRAINT location_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES location(location_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: location_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY location ADD CONSTRAINT location_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationevent_location_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationevent ADD CONSTRAINT locationevent_location_id_fkey FOREIGN KEY (location_id) REFERENCES location(location_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationevent_method_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationevent ADD CONSTRAINT locationevent_method_id_fkey FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationevent_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationevent ADD CONSTRAINT locationevent_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationevent_previous_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationevent ADD CONSTRAINT locationevent_previous_id_fkey FOREIGN KEY (previous_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationevent_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationevent ADD CONSTRAINT locationevent_project_id_fkey FOREIGN KEY (project_id) REFERENCES project(project_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationevent_soiltaxon_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationevent ADD CONSTRAINT locationevent_soiltaxon_id_fkey FOREIGN KEY (soiltaxon_id) REFERENCES soiltaxon(soiltaxon_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationevent_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationevent ADD CONSTRAINT locationevent_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationeventcontributor_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationeventcontributor ADD CONSTRAINT locationeventcontributor_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationeventcontributor_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationeventcontributor ADD CONSTRAINT locationeventcontributor_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationeventsynonym_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationeventsynonym ADD CONSTRAINT locationeventsynonym_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationeventsynonym_primarylocationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationeventsynonym ADD CONSTRAINT locationeventsynonym_primarylocationevent_id_fkey FOREIGN KEY (primarylocationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationeventsynonym_synonymlocationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationeventsynonym ADD CONSTRAINT locationeventsynonym_synonymlocationevent_id_fkey FOREIGN KEY (synonymlocationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationplace_identifier_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationplace ADD CONSTRAINT locationplace_identifier_id_fkey FOREIGN KEY (identifier_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationplace_location_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationplace ADD CONSTRAINT locationplace_location_id_fkey FOREIGN KEY (location_id) REFERENCES location(location_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: locationplace_place_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY locationplace ADD CONSTRAINT locationplace_place_id_fkey FOREIGN KEY (place_id) REFERENCES place(place_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: method_covermethod_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY method ADD CONSTRAINT method_covermethod_id_fkey FOREIGN KEY (covermethod_id) REFERENCES covermethod(covermethod_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: method_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY method ADD CONSTRAINT method_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: method_subplotmethod_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY method ADD CONSTRAINT method_subplotmethod_id_fkey FOREIGN KEY (subplotmethod_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: methodtaxonclass_method_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY methodtaxonclass ADD CONSTRAINT methodtaxonclass_method_id_fkey FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: methodtaxonclass_submethod_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY methodtaxonclass ADD CONSTRAINT methodtaxonclass_submethod_id_fkey FOREIGN KEY (submethod_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE SET NULL; -- -- Name: methodtaxonclass_taxonlabel_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY methodtaxonclass ADD CONSTRAINT methodtaxonclass_taxonlabel_id_fkey FOREIGN KEY (taxonlabel_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: note_notelink_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY note ADD CONSTRAINT note_notelink_id_fkey FOREIGN KEY (notelink_id) REFERENCES notelink(notelink_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: note_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY note ADD CONSTRAINT note_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: party_currentname_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY party ADD CONSTRAINT party_currentname_id_fkey FOREIGN KEY (currentname_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: party_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY party ADD CONSTRAINT party_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: partymember_childparty_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY partymember ADD CONSTRAINT partymember_childparty_id_fkey FOREIGN KEY (childparty_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: partymember_parentparty_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY partymember ADD CONSTRAINT partymember_parentparty_id_fkey FOREIGN KEY (parentparty_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: place_canon_place_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY place ADD CONSTRAINT place_canon_place_id_fkey FOREIGN KEY (canon_place_id) REFERENCES place(place_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: place_coordinates_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY place ADD CONSTRAINT place_coordinates_id_fkey FOREIGN KEY (coordinates_id) REFERENCES coordinates(coordinates_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: place_matched_place_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY place ADD CONSTRAINT place_matched_place_id_fkey FOREIGN KEY (matched_place_id) REFERENCES place(place_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: place_place_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY place ADD CONSTRAINT place_place_id_fkey FOREIGN KEY (placename_id) REFERENCES placename(placename_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: place_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY place ADD CONSTRAINT place_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: placecorrelation_childplace_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY placecorrelation ADD CONSTRAINT placecorrelation_childplace_id_fkey FOREIGN KEY (childplace_id) REFERENCES placename(placename_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: placecorrelation_parentplace_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY placecorrelation ADD CONSTRAINT placecorrelation_parentplace_id_fkey FOREIGN KEY (parentplace_id) REFERENCES placename(placename_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: placename_ancestor_ancestor_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY placename_ancestor ADD CONSTRAINT placename_ancestor_ancestor_id_fkey FOREIGN KEY (ancestor_id) REFERENCES placename(placename_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: placename_ancestor_place_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY placename_ancestor ADD CONSTRAINT placename_ancestor_place_id_fkey FOREIGN KEY (placename_id) REFERENCES placename(placename_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: placename_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY placename ADD CONSTRAINT placename_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES placename(placename_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: plantobservation_aggregateoccurrence_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY plantobservation ADD CONSTRAINT plantobservation_aggregateoccurrence_id_fkey FOREIGN KEY (aggregateoccurrence_id) REFERENCES aggregateoccurrence(aggregateoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: plantobservation_plant_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY plantobservation ADD CONSTRAINT plantobservation_plant_id_fkey FOREIGN KEY (plant_id) REFERENCES plant(plant_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: plantobservation_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY plantobservation ADD CONSTRAINT plantobservation_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: project_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY project ADD CONSTRAINT project_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: projectcontributor_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY projectcontributor ADD CONSTRAINT projectcontributor_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: projectcontributor_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY projectcontributor ADD CONSTRAINT projectcontributor_project_id_fkey FOREIGN KEY (project_id) REFERENCES project(project_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: revision_previousrevision_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY revision ADD CONSTRAINT revision_previousrevision_id_fkey FOREIGN KEY (previousrevision_id) REFERENCES revision(revision_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: soilobs_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY soilobs ADD CONSTRAINT soilobs_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: soiltaxon_soilparent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY soiltaxon ADD CONSTRAINT soiltaxon_soilparent_id_fkey FOREIGN KEY (soilparent_id) REFERENCES soiltaxon(soiltaxon_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: source_sourcejournal_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY source ADD CONSTRAINT source_sourcejournal_id_fkey FOREIGN KEY (sourcejournal_id) REFERENCES sourcejournal(sourcejournal_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: sourcecontributor_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY sourcecontributor ADD CONSTRAINT sourcecontributor_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: sourcecontributor_sourceparty_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY sourcecontributor ADD CONSTRAINT sourcecontributor_sourceparty_id_fkey FOREIGN KEY (sourceparty_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: sourcename_matched_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY sourcename ADD CONSTRAINT sourcename_matched_source_id_fkey FOREIGN KEY (matched_source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: sourcename_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY sourcename ADD CONSTRAINT sourcename_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: specimenreplicate_institution_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY specimenreplicate ADD CONSTRAINT specimenreplicate_institution_id_fkey FOREIGN KEY (institution_id) REFERENCES sourcename(sourcename_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: specimenreplicate_plantobservation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY specimenreplicate ADD CONSTRAINT specimenreplicate_plantobservation_id_fkey FOREIGN KEY (plantobservation_id) REFERENCES plantobservation(plantobservation_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: specimenreplicate_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY specimenreplicate ADD CONSTRAINT specimenreplicate_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: specimenreplicate_specimen_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY specimenreplicate ADD CONSTRAINT specimenreplicate_specimen_id_fkey FOREIGN KEY (specimen_id) REFERENCES specimen(specimen_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: stemobservation_plantobservation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY stemobservation ADD CONSTRAINT stemobservation_plantobservation_id_fkey FOREIGN KEY (plantobservation_id) REFERENCES plantobservation(plantobservation_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: stemobservation_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY stemobservation ADD CONSTRAINT stemobservation_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: stratum_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY stratum ADD CONSTRAINT stratum_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: stratum_method_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY stratum ADD CONSTRAINT stratum_method_id_fkey FOREIGN KEY (method_id) REFERENCES method(method_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonalt_taxondetermination_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonalt ADD CONSTRAINT taxonalt_taxondetermination_id_fkey FOREIGN KEY (taxondetermination_id) REFERENCES taxondetermination(taxondetermination_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonalt_taxonlabel_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonalt ADD CONSTRAINT taxonalt_taxonlabel_id_fkey FOREIGN KEY (taxonlabel_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonconcept_concept_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonconcept ADD CONSTRAINT taxonconcept_concept_source_id_fkey FOREIGN KEY (concept_source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonconcept_taxonlabel_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonconcept ADD CONSTRAINT taxonconcept_taxonlabel_id_fkey FOREIGN KEY (taxonlabel_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxoncorrelation_taxonlabel_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxoncorrelation ADD CONSTRAINT taxoncorrelation_taxonlabel_id_fkey FOREIGN KEY (taxonlabel_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxoncorrelation_taxonstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxoncorrelation ADD CONSTRAINT taxoncorrelation_taxonstatus_id_fkey FOREIGN KEY (taxonstatus_id) REFERENCES taxonstatus(taxonstatus_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxondetermination_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxondetermination ADD CONSTRAINT taxondetermination_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxondetermination_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxondetermination ADD CONSTRAINT taxondetermination_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxondetermination_taxonoccurrence_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxondetermination ADD CONSTRAINT taxondetermination_taxonoccurrence_id_fkey FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxondetermination_taxonverbatim_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxondetermination ADD CONSTRAINT taxondetermination_taxonverbatim_id_fkey FOREIGN KEY (taxonverbatim_id) REFERENCES taxonverbatim(taxonverbatim_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonlabel_canon_label_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonlabel ADD CONSTRAINT taxonlabel_canon_label_id_fkey FOREIGN KEY (canon_label_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonlabel_matched_label_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonlabel ADD CONSTRAINT taxonlabel_matched_label_id_fkey FOREIGN KEY (matched_label_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonlabel_parent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonlabel ADD CONSTRAINT taxonlabel_parent_id_fkey FOREIGN KEY (parent_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonlabel_relationship_ancestor_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonlabel_relationship ADD CONSTRAINT taxonlabel_relationship_ancestor_id_fkey FOREIGN KEY (ancestor_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonlabel_relationship_descendant_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonlabel_relationship ADD CONSTRAINT taxonlabel_relationship_descendant_id_fkey FOREIGN KEY (descendant_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonlabel_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonlabel ADD CONSTRAINT taxonlabel_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonlineage_childtaxonstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonlineage ADD CONSTRAINT taxonlineage_childtaxonstatus_id_fkey FOREIGN KEY (childtaxonstatus_id) REFERENCES taxonstatus(taxonstatus_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonlineage_parenttaxonstatus_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonlineage ADD CONSTRAINT taxonlineage_parenttaxonstatus_id_fkey FOREIGN KEY (parenttaxonstatus_id) REFERENCES taxonstatus(taxonstatus_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonoccurrence_collector_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonoccurrence ADD CONSTRAINT taxonoccurrence_collector_id_fkey FOREIGN KEY (collector_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonoccurrence_locationevent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonoccurrence ADD CONSTRAINT taxonoccurrence_locationevent_id_fkey FOREIGN KEY (locationevent_id) REFERENCES locationevent(locationevent_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonoccurrence_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonoccurrence ADD CONSTRAINT taxonoccurrence_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonstatus_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonstatus ADD CONSTRAINT taxonstatus_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonstatus_source_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonstatus ADD CONSTRAINT taxonstatus_source_id_fkey FOREIGN KEY (source_id) REFERENCES source(source_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonstatus_taxonlabel_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonstatus ADD CONSTRAINT taxonstatus_taxonlabel_id_fkey FOREIGN KEY (taxonlabel_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: taxonverbatim_taxonlabel_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY taxonverbatim ADD CONSTRAINT taxonverbatim_taxonlabel_id_fkey FOREIGN KEY (taxonlabel_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: telephone_party_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY telephone ADD CONSTRAINT telephone_party_id_fkey FOREIGN KEY (party_id) REFERENCES party(party_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: threatened_taxonlabel_taxonlabel_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY threatened_taxonlabel ADD CONSTRAINT threatened_taxonlabel_taxonlabel_id_fkey FOREIGN KEY (taxonlabel_id) REFERENCES taxonlabel(taxonlabel_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: trait_stemobservation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY trait ADD CONSTRAINT trait_stemobservation_id_fkey FOREIGN KEY (stemobservation_id) REFERENCES stemobservation(stemobservation_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: voucher_specimenreplicate_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY voucher ADD CONSTRAINT voucher_specimenreplicate_id_fkey FOREIGN KEY (specimenreplicate_id) REFERENCES specimenreplicate(specimenreplicate_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- Name: voucher_taxonoccurrence_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY voucher ADD CONSTRAINT voucher_taxonoccurrence_id_fkey FOREIGN KEY (taxonoccurrence_id) REFERENCES taxonoccurrence(taxonoccurrence_id) ON UPDATE CASCADE ON DELETE CASCADE; -- -- PostgreSQL database dump complete --