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 un rayon
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
pryn_mryn_id |
integer |
|
|
|
Identifiant automatique de la mesure de la variable numérique |
|||
pryn_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 |
---|---|---|---|---|---|---|---|---|
pryn_mryn_id |
mryn_id |
No Action |
No Action |
|
Immediate |
|
||
pryn_per_id |
per_id |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table tj_mesurepar_mryn_per_pryn
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
pryn_mryn_id, pryn_per_id |
|
Triggers
There are no triggers for table tj_mesurepar_mryn_per_pryn
Rules
There are no rules for table tj_mesurepar_mryn_per_pryn
Policies
There are no policies for table tj_mesurepar_mryn_per_pryn
Referenced
There are no tables referenced by table tj_mesurepar_mryn_per_pryn
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tj_mesurepar_mryn_per_pryn (
pryn_mryn_id INTEGER NOT NULL,
pryn_per_id INTEGER NOT NULL,
CONSTRAINT tj_mesurepar_mryn_per_pryn_pkey PRIMARY KEY(pryn_mryn_id, pryn_per_id),
CONSTRAINT c_fk_mryn_pryn FOREIGN KEY (pryn_mryn_id)
REFERENCES public.tj_mesurenum_rayon_ray_var_mryn(mryn_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_per_pryn FOREIGN KEY (pryn_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_mryn_per_pryn
IS 'Association permettant de préciser éventuellement la ou les personnes ayant effectué la mesure / observation de la variable numérique concernant un rayon';
COMMENT ON COLUMN public.tj_mesurepar_mryn_per_pryn.pryn_mryn_id
IS 'Identifiant automatique de la mesure de la variable numérique';
COMMENT ON COLUMN public.tj_mesurepar_mryn_per_pryn.pryn_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 |