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

Table: tj_role_ope_etu_rol

 

 

Schema

public

 

Owner

phyto

 

Tablespace

(default)

 

Descriptions

Table associant des opérateurs à des études en précisant le rôle joué par la personne

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

 

rol_libelle

varchar(64)

 

 

 

Libellé libre pour le rôle que joue l'opérateur pour l'étude associée

rol_etu_id

integer

 

 

 

Identifiant de l'étude associée

rol_ope_id

integer

 

 

 

Identifiant de l'opérateur ayant un rôle déclaré dans l'étude

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_etu_rol

rol_etu_id

public.t_etude_etu

etu_id

No Action

No Action

 

Immediate

 

c_fk_ope_rol

rol_ope_id

public.tr_operateur_ope

ope_id

No Action

No Action

 

Immediate

Chaque ligne de la table tj_role_ope_etu_rol est liée à un et un seul opérateur

 

Check Constraints

There are no check constraints for table tj_role_ope_etu_rol

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

tj_role_ope_etu_pkey

btree

 

rol_etu_id, rol_ope_id

 

 

Triggers

There are no triggers for table tj_role_ope_etu_rol

 

Rules

There are no rules for table tj_role_ope_etu_rol

 

Policies

There are no policies for table tj_role_ope_etu_rol

 

Referenced

There are no tables referenced by table tj_role_ope_etu_rol

 

Properties

Property

Value

Inherited From

 

Rows

156

Pages

2

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tj_role_ope_etu_rol (
 rol_libelle VARCHAR(64) NOT NULL,
 rol_etu_id INTEGER NOT NULL,
 rol_ope_id INTEGER NOT NULL,
 CONSTRAINT tj_role_ope_etu_pkey PRIMARY KEY(rol_etu_id, rol_ope_id),
 CONSTRAINT c_fk_etu_rol FOREIGN KEY (rol_etu_id)
   REFERENCES public.t_etude_etu(etu_id)
   ON DELETE NO ACTION
   ON
UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT c_fk_ope_rol FOREIGN KEY (rol_ope_id)
   REFERENCES public.tr_operateur_ope(ope_id)
   ON DELETE NO ACTION
   ON
UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.tj_role_ope_etu_rol
IS 'Table associant des opérateurs à des études en précisant le rôle joué par la personne';

COMMENT ON COLUMN public.tj_role_ope_etu_rol.rol_libelle
IS 'Libellé libre pour le rôle que joue l''opérateur pour l''étude associée';

COMMENT ON COLUMN public.tj_role_ope_etu_rol.rol_etu_id
IS 'Identifiant de l''étude associée';

COMMENT ON COLUMN public.tj_role_ope_etu_rol.rol_ope_id
IS 'Identifiant de l''opérateur ayant un rôle déclaré dans l''étude';

COMMENT ON CONSTRAINT c_fk_ope_rol ON public.tj_role_ope_etu_rol
IS 'Chaque ligne de la table tj_role_ope_etu_rol est liée à un et un seul opérateur';

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