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 |
---|---|---|---|---|---|---|---|---|
plt_pjt_id |
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 |
---|---|---|---|---|---|---|
btree |
|
plt_numero, plt_pjt_id |
|
|
||
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 |
---|---|---|---|---|---|---|---|---|---|---|
public |
dat_plt_id |
plt_id |
No Action |
No Action |
|
Immediate |
Une donnée (mesure) est associée à un et un seul plant |
|||
public |
emp_plt_id |
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 |