pggeodb.nancy.inra.fr/db_toff - db_toff on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Table: tr_referencetaxonomique_tax

 

 

Schema

public

 

Owner

postgres

 

Tablespace

(default)

 

Descriptions

Table contenant les différentes références taxonomiques et leurs versions

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

tax_id

serial

 

nextval('tr_referencetaxonomique_tax_tax_id_seq'::regclass)

Identifiant automatique de la référence taxonomique

 

 

tax_nom

varchar(128)

 

 

 

Nom de la référence taxonomique

 

 

tax_version

varchar(10)

 

 

 

Version de la référence taxonomique

 

 

tax_lien

varchar

 

 

 

 

Lien éventuel vers une information en ligne associée à la référence taxonomique

 

Foreign Keys

There are no foreign keys for table tr_referencetaxonomique_tax

 

Check Constraints

There are no check constraints for table tr_referencetaxonomique_tax

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_nom_version_tax

btree

 

tax_nom, tax_version

 

le couple nom / version ne peut contenir de doublons

tr_referencetaxonomique_tax_pkey

btree

 

tax_id

 

 

Triggers

There are no triggers for table tr_referencetaxonomique_tax

 

Rules

There are no rules for table tr_referencetaxonomique_tax

 

Policies

There are no policies for table tr_referencetaxonomique_tax

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tr_espece_esp

public

c_fk_tax_esp

esp_tax_id

public.tr_referencetaxonomique_tax

tax_id

No Action

No Action

 

Immediate

Une espèce est rattachée à une et une seule référence taxonomique

 

Properties

Property

Value

Inherited From

 

Rows

1

Pages

1

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tr_referencetaxonomique_tax (
 tax_id SERIAL,
 tax_nom VARCHAR(128) NOT NULL,
 tax_version VARCHAR(10) NOT NULL,
 tax_lien VARCHAR,
 CONSTRAINT c_uni_nom_version_tax UNIQUE(tax_nom, tax_version),
 CONSTRAINT tr_referencetaxonomique_tax_pkey PRIMARY KEY(tax_id)
)
WITH (oids = false);

COMMENT ON TABLE public.tr_referencetaxonomique_tax
IS 'Table contenant les différentes références taxonomiques et leurs versions';

COMMENT ON COLUMN public.tr_referencetaxonomique_tax.tax_id
IS 'Identifiant automatique de la référence taxonomique';

COMMENT ON COLUMN public.tr_referencetaxonomique_tax.tax_nom
IS 'Nom de la référence taxonomique';

COMMENT ON COLUMN public.tr_referencetaxonomique_tax.tax_version
IS 'Version de la référence taxonomique';

COMMENT ON COLUMN public.tr_referencetaxonomique_tax.tax_lien
IS 'Lien éventuel vers une information en ligne associée à la référence taxonomique';

COMMENT ON CONSTRAINT c_uni_nom_version_tax ON public.tr_referencetaxonomique_tax
IS 'le couple nom / version ne peut contenir de doublons';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23
Previous topic Chapter index Next topic