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

Table: t_rondelle_ron

 

 

Schema

public

 

Owner

phyto

 

Tablespace

(default)

 

Descriptions

Table des rondelles

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

ron_id

serial

 

nextval('t_rondelle_ron_ron_id_seq'::regclass)

Identifiant unique automatique

 

ron_aid_id

integer

 

 

 

Identifiant unique de l'arbre identifié sur lequel le prélèvelment est réalisé

 

 

ron_circonference

real

 

 

 

 

Circonférence de la rondelle exprimée en cm à 1 décimal.

 

 

ron_traitement

varchar(255)

 

 

 

 

Précise les traitements appliqués à la rondelle ainsi que les dates d'application en format libre

 

 

ron_hauteur

real

 

 

 

 

Précise la hauteur de prélèvement de la rondelle (en mètre)

 

 

ron_numero

integer

 

 

1

Numéro en séquence de la rondelle pour l'arbre identifié

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_aid_ron

ron_aid_id

public.t_arbre_identifie_aid

aid_id

No Action

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table t_rondelle_ron

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_aid_hauteur_ron

btree

 

ron_aid_id, ron_hauteur

 

 

c_uni_aid_numero_ron

btree

 

ron_aid_id, ron_numero

 

 

t_rondelle_ron_pkey

btree

 

ron_id

 

 

Triggers

There are no triggers for table t_rondelle_ron

 

Rules

There are no rules for table t_rondelle_ron

 

Policies

There are no policies for table t_rondelle_ron

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

t_barreau_bar

public

c_fk_ron_bar

bar_ron_id

public.t_rondelle_ron

ron_id

No Action

No Action

 

Immediate

 

t_rayon_ray

public

c_fk_ron_ray

ray_ron_id

public.t_rondelle_ron

ron_id

No Action

No Action

 

Immediate

 

tj_mesurenum_rondelle_ron_var_mron

public

c_fk_ron_mron

mron_ron_id

public.t_rondelle_ron

ron_id

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.t_rondelle_ron (
 ron_id SERIAL,
 ron_aid_id INTEGER NOT NULL,
 ron_circonference REAL,
 ron_traitement VARCHAR(255),
 ron_hauteur REAL,
 ron_numero INTEGER DEFAULT 1 NOT NULL,
 CONSTRAINT c_uni_aid_hauteur_ron UNIQUE(ron_aid_id, ron_hauteur),
 CONSTRAINT c_uni_aid_numero_ron UNIQUE(ron_aid_id, ron_numero),
 CONSTRAINT t_rondelle_ron_pkey PRIMARY KEY(ron_id),
 CONSTRAINT c_fk_aid_ron FOREIGN KEY (ron_aid_id)
   REFERENCES public.t_arbre_identifie_aid(aid_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.t_rondelle_ron
IS 'Table des rondelles';

COMMENT ON COLUMN public.t_rondelle_ron.ron_id
IS 'Identifiant unique automatique';

COMMENT ON COLUMN public.t_rondelle_ron.ron_aid_id
IS 'Identifiant unique de l''arbre identifié sur lequel le prélèvelment est réalisé';

COMMENT ON COLUMN public.t_rondelle_ron.ron_circonference
IS 'Circonférence de la rondelle exprimée en cm à 1 décimal.';

COMMENT ON COLUMN public.t_rondelle_ron.ron_traitement
IS 'Précise les traitements appliqués à la rondelle ainsi que les dates d''application en format libre';

COMMENT ON COLUMN public.t_rondelle_ron.ron_hauteur
IS 'Précise la hauteur de prélèvement de la rondelle (en mètre)';

COMMENT ON COLUMN public.t_rondelle_ron.ron_numero
IS 'Numéro en séquence de la rondelle pour l''arbre identifié';

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