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_esp_id |
integer |
|
|
|
Identifiant unique automatique de l'espèce associée |
||
|
|
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 |
---|---|---|---|---|---|---|---|---|
arb_esp_id |
esp_id |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table t_arbre_arb
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
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 |
---|---|---|---|---|---|---|---|---|---|---|
public |
aid_arb_id |
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_esp_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_esp_arb FOREIGN KEY (arb_esp_id)
REFERENCES public.tr_espece_esp(esp_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_esp_id
IS 'Identifiant unique automatique de l''espèce associée';
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';
This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37 |