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_groupe_taxon_gtax

 

 

Schema

public

 

Owner

postgres

 

Tablespace

(default)

 

Descriptions

Table des groupes de taxons. Informations relatives aux regroupements d'essences (Onglet Essence, colonnes ess + gpe_ess)

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

gtax_id

serial

 

nextval('tr_groupe_taxon_gtax_gtax_id_seq'::regclass)

Identifiant automatique numérique du groupe de taxons

 

 

gtax_nom

varchar(50)

 

 

 

Nom du groupe de taxons

 

 

gtax_code

varchar(30)

 

 

Code abrege du groupe de taxons

 

Foreign Keys

There are no foreign keys for table tr_groupe_taxon_gtax

 

Check Constraints

There are no check constraints for table tr_groupe_taxon_gtax

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_code_gtax

btree

 

gtax_code

 

Le code d'un groupe de taxons doit être unique

tr_groupe_taxon_gtax_pkey

btree

 

gtax_id

 

 

Triggers

There are no triggers for table tr_groupe_taxon_gtax

 

Rules

There are no rules for table tr_groupe_taxon_gtax

 

Policies

There are no policies for table tr_groupe_taxon_gtax

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

t_dispositif_dis

public

c_fk_gtax_dis

dis_gtax_id

public.tr_groupe_taxon_gtax

gtax_id

No Action

No Action

 

Immediate

Un dispositif est associé à un et un seul groupe taxonomique

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tr_groupe_taxon_gtax (
 gtax_id SERIAL,
 gtax_nom VARCHAR(50) NOT NULL,
 gtax_code VARCHAR(30) NOT NULL,
 CONSTRAINT c_uni_code_gtax UNIQUE(gtax_code),
 CONSTRAINT tr_groupe_taxon_gtax_pkey PRIMARY KEY(gtax_id)
)
WITH (oids = false);

COMMENT ON TABLE public.tr_groupe_taxon_gtax
IS 'Table des groupes de taxons. Informations relatives aux regroupements d''essences (Onglet Essence, colonnes ess + gpe_ess)';

COMMENT ON COLUMN public.tr_groupe_taxon_gtax.gtax_id
IS 'Identifiant automatique numérique du groupe de taxons';

COMMENT ON COLUMN public.tr_groupe_taxon_gtax.gtax_nom
IS 'Nom du groupe de taxons';

COMMENT ON COLUMN public.tr_groupe_taxon_gtax.gtax_code
IS 'Code abrege du groupe de taxons';

COMMENT ON CONSTRAINT c_uni_code_gtax ON public.tr_groupe_taxon_gtax
IS 'Le code d''un groupe 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