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

Table: tj_equiperayon_ray_per_eqr

 

 

Schema

public

 

Owner

phyto

 

Tablespace

(default)

 

Descriptions

Table associant éventuellement une ou plusieurs personnes avec un rayon et définissant le rôle de la personne (prélévement, interdatation, les 2 ...)

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

eqr_ray_id

integer

 

 

 

Identifiant automatique du rayon

eqr_per_id

integer

 

 

 

Identifiant automatique d'une personne

 

 

eqr_role

varchar(40)

 

 

 

 

Role tenu par la personne dans le suivi du rayon

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_per_eqr

eqr_per_id

public.t_personne_per

per_id

No Action

No Action

 

Immediate

 

c_fk_ray_eqr

eqr_ray_id

public.t_rayon_ray

ray_id

Cascade

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table tj_equiperayon_ray_per_eqr

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

tj_equiperayon_ray_per_eqr_pkey

btree

 

eqr_ray_id, eqr_per_id

 

 

Triggers

There are no triggers for table tj_equiperayon_ray_per_eqr

 

Rules

There are no rules for table tj_equiperayon_ray_per_eqr

 

Policies

There are no policies for table tj_equiperayon_ray_per_eqr

 

Referenced

There are no tables referenced by table tj_equiperayon_ray_per_eqr

 

Properties

Property

Value

Inherited From

 

Rows

26304

Pages

195

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tj_equiperayon_ray_per_eqr (
 eqr_ray_id INTEGER NOT NULL,
 eqr_per_id INTEGER NOT NULL,
 eqr_role VARCHAR(40),
 CONSTRAINT tj_equiperayon_ray_per_eqr_pkey PRIMARY KEY(eqr_ray_id, eqr_per_id),
 CONSTRAINT c_fk_per_eqr FOREIGN KEY (eqr_per_id)
   REFERENCES public.t_personne_per(per_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT c_fk_ray_eqr FOREIGN KEY (eqr_ray_id)
   REFERENCES public.t_rayon_ray(ray_id)
   ON DELETE CASCADE
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.tj_equiperayon_ray_per_eqr
IS 'Table associant éventuellement une ou plusieurs personnes avec un rayon et définissant le rôle de la personne (prélévement, interdatation, les 2 ...)';

COMMENT ON COLUMN public.tj_equiperayon_ray_per_eqr.eqr_ray_id
IS 'Identifiant automatique du rayon';

COMMENT ON COLUMN public.tj_equiperayon_ray_per_eqr.eqr_per_id
IS 'Identifiant automatique d''une personne';

COMMENT ON COLUMN public.tj_equiperayon_ray_per_eqr.eqr_role
IS 'Role tenu par la personne dans le suivi du rayon';

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