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

Table: tr_rang_taxon_ran

 

 

Schema

public

 

Owner

postgres

 

Tablespace

(default)

 

Descriptions

Table des rangs de taxons. Informations relatives aux rangs (espece/sous-espece/var/x) des taxons

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

ran_id

serial

 

nextval('tr_rang_taxon_ran_ran_id_seq'::regclass)

Identifiant automatique numérique du rang de taxons

 

 

ran_nom

varchar(50)

 

 

Nom du rang de taxons

 

 

ran_num

integer

 

 

 

Numéro du rang de taxons pour pouvoir hiérarchiser

 

Foreign Keys

There are no foreign keys for table tr_rang_taxon_ran

 

Check Constraints

There are no check constraints for table tr_rang_taxon_ran

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_nom_ran

btree

 

ran_nom

 

Le nom d'un rang de taxons doit être unique

tr_rang_taxon_ran_pkey

btree

 

ran_id

 

 

Triggers

There are no triggers for table tr_rang_taxon_ran

 

Rules

There are no rules for table tr_rang_taxon_ran

 

Policies

There are no policies for table tr_rang_taxon_ran

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tr_taxon_tax

public

c_fk_ran_tax

tax_ran_id

public.tr_rang_taxon_ran

ran_id

No Action

No Action

 

Immediate

Un taxon est associé à un et un seul rang

 

Properties

Property

Value

Inherited From

 

Rows

1

Pages

1

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tr_rang_taxon_ran (
 ran_id SERIAL,
 ran_nom VARCHAR(50) NOT NULL,
 ran_num INTEGER NOT NULL,
 CONSTRAINT c_uni_nom_ran UNIQUE(ran_nom),
 CONSTRAINT tr_rang_taxon_ran_pkey PRIMARY KEY(ran_id)
)
WITH (oids = false);

COMMENT ON TABLE public.tr_rang_taxon_ran
IS 'Table des rangs de taxons. Informations relatives aux rangs (espece/sous-espece/var/x) des taxons';

COMMENT ON COLUMN public.tr_rang_taxon_ran.ran_id
IS 'Identifiant automatique numérique du rang de taxons';

COMMENT ON COLUMN public.tr_rang_taxon_ran.ran_nom
IS 'Nom du rang de taxons';

COMMENT ON COLUMN public.tr_rang_taxon_ran.ran_num
IS 'Numéro du rang de taxons pour pouvoir hiérarchiser';

COMMENT ON CONSTRAINT c_uni_nom_ran ON public.tr_rang_taxon_ran
IS 'Le nom d''un rang de taxons doit être unique';

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