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

Table: t_plant_plt

 

 

Schema

public

 

Owner

robot

 

Tablespace

(default)

 

Descriptions

Table des plants

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

plt_id

serial

 

nextval('t_plant_plt_plt_id_seq'::regclass)

Identifiant numérique automatique de chaque plant

 

 

plt_numero

varchar(12)

 

 

 

Identifiant alphanumérique utilisateur du plant (unique par projet)

 

plt_pjt_id

integer

 

 

 

Identifiant numérique du projet auquel est rattaché le plant

 

 

plt_commentaire

varchar(128)

 

 

 

 

Commentaire du plant

 

 

plt_genotype

varchar(64)

 

 

 

 

Génotype du plant

 

 

plt_regime_hydrique

varchar(64)

 

 

 

 

Régime hydrique appliqué au plant

 

 

plt_autre_stress

varchar(64)

 

 

 

 

Champs utilisé pour coder d'autres facteurs concernant le plant

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_pjt_plt

plt_pjt_id

public.t_projet_pjt

pjt_id

No Action

No Action

 

Immediate

Un plan est associé à un et un seul projet

 

Check Constraints

There are no check constraints for table t_plant_plt

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_numero_pjt_plt

btree

 

plt_numero, plt_pjt_id

 

 

t_plant_plt_pkey

btree

 

plt_id

 

 

Triggers

There are no triggers for table t_plant_plt

 

Rules

There are no rules for table t_plant_plt

 

Policies

There are no policies for table t_plant_plt

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

t_datarobot_dat

public

c_fk_plt_dat

dat_plt_id

public.t_plant_plt

plt_id

No Action

No Action

 

Immediate

Une donnée (mesure) est associée à un et un seul plant

tj_emplacement_plt_rob_emp

public

c_fk_plt_emp

emp_plt_id

public.t_plant_plt

plt_id

Cascade

No Action

 

Immediate

Un emplacement concerne un et un seul plant

 

Properties

Property

Value

Inherited From

 

Rows

524

Pages

4

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.t_plant_plt (
 plt_id SERIAL,
 plt_numero VARCHAR(12) NOT NULL,
 plt_pjt_id INTEGER NOT NULL,
 plt_commentaire VARCHAR(128),
 plt_genotype VARCHAR(64),
 plt_regime_hydrique VARCHAR(64),
 plt_autre_stress VARCHAR(64),
 CONSTRAINT c_uni_numero_pjt_plt UNIQUE(plt_numero, plt_pjt_id),
 CONSTRAINT t_plant_plt_pkey PRIMARY KEY(plt_id),
 CONSTRAINT c_fk_pjt_plt FOREIGN KEY (plt_pjt_id)
   REFERENCES public.t_projet_pjt(pjt_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

)
WITH (oids = false);

COMMENT ON TABLE public.t_plant_plt
IS 'Table des plants';

COMMENT ON COLUMN public.t_plant_plt.plt_id
IS 'Identifiant numérique automatique de chaque plant';

COMMENT ON COLUMN public.t_plant_plt.plt_numero
IS 'Identifiant alphanumérique utilisateur du plant (unique par projet)';

COMMENT ON COLUMN public.t_plant_plt.plt_pjt_id
IS 'Identifiant numérique du projet auquel est rattaché le plant';

COMMENT ON COLUMN public.t_plant_plt.plt_commentaire
IS 'Commentaire du plant';

COMMENT ON COLUMN public.t_plant_plt.plt_genotype
IS 'Génotype du plant';

COMMENT ON COLUMN public.t_plant_plt.plt_regime_hydrique
IS 'Régime hydrique appliqué au plant';

COMMENT ON COLUMN public.t_plant_plt.plt_autre_stress
IS 'Champs utilisé pour coder d''autres facteurs concernant le plant';

COMMENT ON CONSTRAINT c_fk_pjt_plt ON public.t_plant_plt
IS 'Un plan est associé à un et un seul projet';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51
Previous topic Chapter index Next topic