Schema
public
Owner
phyto
Tablespace
(default)
Descriptions
Association permettant de préciser éventuellement la ou les personnes ayant effectué la mesure / observation de la variable numérique concernant une rondelle
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
pron_mron_id |
integer |
|
|
|
Identifiant automatique de la mesure de la variable numérique |
|||
pron_per_id |
integer |
|
|
|
Identifiant automatique d'une personne qui a effectue la mesure |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
pron_mron_id |
mron_id |
No Action |
No Action |
|
Immediate |
|
||
pron_per_id |
per_id |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table tj_mesurepar_mron_per_pron
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
pron_mron_id, pron_per_id |
|
Triggers
There are no triggers for table tj_mesurepar_mron_per_pron
Rules
There are no rules for table tj_mesurepar_mron_per_pron
Policies
There are no policies for table tj_mesurepar_mron_per_pron
Referenced
There are no tables referenced by table tj_mesurepar_mron_per_pron
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tj_mesurepar_mron_per_pron (
pron_mron_id INTEGER NOT NULL,
pron_per_id INTEGER NOT NULL,
CONSTRAINT tj_mesurepar_mron_per_pron_pkey PRIMARY KEY(pron_mron_id, pron_per_id),
CONSTRAINT c_fk_mron_pron FOREIGN KEY (pron_mron_id)
REFERENCES public.tj_mesurenum_rondelle_ron_var_mron(mron_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_per_pron FOREIGN KEY (pron_per_id)
REFERENCES public.t_personne_per(per_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON TABLE public.tj_mesurepar_mron_per_pron
IS 'Association permettant de préciser éventuellement la ou les personnes ayant effectué la mesure / observation de la variable numérique concernant une rondelle';
COMMENT ON COLUMN public.tj_mesurepar_mron_per_pron.pron_mron_id
IS 'Identifiant automatique de la mesure de la variable numérique';
COMMENT ON COLUMN public.tj_mesurepar_mron_per_pron.pron_per_id
IS 'Identifiant automatique d''une personne qui a effectue la mesure';
This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37 |