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

Table: t_arbre_arb

 

 

Schema

public

 

Owner

phyto

 

Tablespace

(default)

 

Descriptions

Table des arbres au sens individu matérialisé en bois

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

arb_id

serial

 

nextval('t_arbre_arb_arb_id_seq'::regclass)

Identifiant unique automatique

 

arb_tax_id

integer

 

 

 

Identifiant unique automatique du taxon associé

 

 

arb_date_choix

date

 

 

 

 

Date à laquelle l'individu arbre a été choisi

 

 

arb_precision_date_choix

varchar(16)

 

 

 

 

Précision de la valeur fournie pour le champ arb_date_choix - par exemple mois si la date est précise au mois près

 

 

arb_date_mort

date

 

 

 

 

Date de la mort estimée de l'arbre

 

 

arb_date_mort_incertitude

varchar(16)

 

 

 

 

Information sur l'incertitude de détermination de la date de mort

 

 

arb_date_coupe

date

 

 

 

 

Date à laquelle on constate la coupe de l'arbre

 

 

arb_remarque

varchar(128)

 

 

 

 

Champ libre pour les remarques / compléments liés à l'individu arbre

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_tax_arb

arb_tax_id

public.tr_taxon_tax

tax_id

No Action

No Action

 

Immediate

Un arbre est rattaché à 1 et 1 seul taxon

 

Check Constraints

There are no check constraints for table t_arbre_arb

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

t_arbre_arb_pkey

btree

 

arb_id

 

 

Triggers

There are no triggers for table t_arbre_arb

 

Rules

There are no rules for table t_arbre_arb

 

Policies

There are no policies for table t_arbre_arb

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

t_arbre_identifie_aid

public

c_fk_arb_aid

aid_arb_id

public.t_arbre_arb

arb_id

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

20393

Pages

133

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.t_arbre_arb (
 arb_id SERIAL,
 arb_tax_id INTEGER NOT NULL,
 arb_date_choix DATE,
 arb_precision_date_choix VARCHAR(16),
 arb_date_mort DATE,
 arb_date_mort_incertitude VARCHAR(16),
 arb_date_coupe DATE,
 arb_remarque VARCHAR(128),
 CONSTRAINT t_arbre_arb_pkey PRIMARY KEY(arb_id),
 CONSTRAINT c_fk_tax_arb FOREIGN KEY (arb_tax_id)
   REFERENCES public.tr_taxon_tax(tax_id)
   ON DELETE NO ACTION
   ON
UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.t_arbre_arb
IS 'Table des arbres au sens individu matérialisé en bois';

COMMENT ON COLUMN public.t_arbre_arb.arb_id
IS 'Identifiant unique automatique';

COMMENT ON COLUMN public.t_arbre_arb.arb_tax_id
IS 'Identifiant unique automatique du taxon associé';

COMMENT ON COLUMN public.t_arbre_arb.arb_date_choix
IS 'Date à laquelle l''individu arbre a été choisi';

COMMENT ON COLUMN public.t_arbre_arb.arb_precision_date_choix
IS 'Précision de la valeur fournie pour le champ arb_date_choix - par exemple mois si la date est précise au mois près';

COMMENT ON COLUMN public.t_arbre_arb.arb_date_mort
IS 'Date de la mort estimée de l''arbre';

COMMENT ON COLUMN public.t_arbre_arb.arb_date_mort_incertitude
IS 'Information sur l''incertitude de détermination de la date de mort';

COMMENT ON COLUMN public.t_arbre_arb.arb_date_coupe
IS 'Date à laquelle on constate la coupe de l''arbre';

COMMENT ON COLUMN public.t_arbre_arb.arb_remarque
IS 'Champ libre pour les remarques / compléments liés à l''individu arbre';

COMMENT ON CONSTRAINT c_fk_tax_arb ON public.t_arbre_arb
IS 'Un arbre  est rattaché à 1 et 1 seul taxon';

This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37
Previous topic Chapter index Next topic