Schema
Owner
postgres
Tablespace
(default)
Descriptions
Table des referentiels taxonomiques. Informations relatives aux referentiels taxonomiques
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
rtax_id |
serial |
|
nextval('tr_ref_taxon_rtax_rtax_id_seq'::regclass) |
Identifiant automatique numérique du referentiel taxonomique |
|||
|
|
rtax_nom |
varchar(50) |
|
|
|
Nom du referentiel taxonomique |
|
|
|
rtax_version |
varchar(30) |
|
|
|
Version du referentiel taxonomique |
Foreign Keys
There are no foreign keys for table tr_ref_taxon_rtax
Check Constraints
There are no check constraints for table tr_ref_taxon_rtax
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
rtax_nom, rtax_version |
|
Le couple nom/version d'un referentiel taxonomique doit être unique |
||
btree |
|
rtax_id |
|
Triggers
There are no triggers for table tr_ref_taxon_rtax
Rules
There are no rules for table tr_ref_taxon_rtax
Policies
There are no policies for table tr_ref_taxon_rtax
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
tax_rtax_id |
rtax_id |
No Action |
No Action |
|
Immediate |
Un taxon appartient à un et un seul referentiel taxonomique |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
1 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tr_ref_taxon_rtax (
rtax_id SERIAL,
rtax_nom VARCHAR(50) NOT NULL,
rtax_version VARCHAR(30) NOT NULL,
CONSTRAINT c_uni_nomver_rtax UNIQUE(rtax_nom, rtax_version),
CONSTRAINT tr_ref_taxon_rtax_pkey PRIMARY KEY(rtax_id)
)
WITH (oids = false);
COMMENT ON TABLE public.tr_ref_taxon_rtax
IS 'Table des referentiels taxonomiques. Informations relatives aux referentiels taxonomiques';
COMMENT ON COLUMN public.tr_ref_taxon_rtax.rtax_id
IS 'Identifiant automatique numérique du referentiel taxonomique';
COMMENT ON COLUMN public.tr_ref_taxon_rtax.rtax_nom
IS 'Nom du referentiel taxonomique';
COMMENT ON COLUMN public.tr_ref_taxon_rtax.rtax_version
IS 'Version du referentiel taxonomique';
COMMENT ON CONSTRAINT c_uni_nomver_rtax ON public.tr_ref_taxon_rtax
IS 'Le couple nom/version d''un referentiel taxonomique doit être unique';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |