db_ofb
Previous topic Chapter index Next topic

Table: tj_role_ope_rgp_ror

 

 

Schema

public

 

Owner

ofb

 

Tablespace

(default)

 

Descriptions

Table de jointure associant un regroupement à un opérateur et à un rôle pour cet opérateur

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

ror_rgp_id

integer

 

 

 

Identifiant unique numérique du regroupement associé

ror_ope_id

integer

 

 

 

Identifiant automatique numérique de l'opérateur associé

ror_rol_id

integer

 

 

 

Identifiant automatique numérique du rôle associé

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_ope_ror

ror_ope_id

public.tr_operateur_ope

ope_id

No Action

No Action

 

Immediate

Le champ ror_ope_id correspond obligatoirement à un opérateur existant

c_fk_rgp_ror

ror_rgp_id

public.t_regroupement_rgp

rgp_id

No Action

No Action

 

Immediate

Le champ ror_rgp_id correspond obligatoirement à un regroupement existant

c_fk_rol_ror

ror_rol_id

public.tr_role_rol

rol_id

No Action

No Action

 

Immediate

Le champ ror_rol_id correspond obligatoirement à un rôle existant

 

Check Constraints

There are no check constraints for table tj_role_ope_rgp_ror

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

tj_role_ope_rgp_ror_pkey

btree

 

ror_rgp_id, ror_ope_id, ror_rol_id

 

x_btr_ope_ror

btree

 

ror_ope_id

 

 

Index de clé étrangère pour accélérer les mises à jour / suppression

x_btr_rgp_ror

btree

 

ror_rgp_id

 

 

Index de clé étrangère pour accélérer les mises à jour / suppression

x_btr_rol_ror

btree

 

ror_rol_id

 

 

Index de clé étrangère pour accélérer les mises à jour / suppression

 

Triggers

There are no triggers for table tj_role_ope_rgp_ror

 

Rules

There are no rules for table tj_role_ope_rgp_ror

 

Policies

There are no policies for table tj_role_ope_rgp_ror

 

Referenced

There are no tables referenced by table tj_role_ope_rgp_ror

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tj_role_ope_rgp_ror (
 ror_rgp_id INTEGER NOT NULL,
 ror_ope_id INTEGER NOT NULL,
 ror_rol_id INTEGER NOT NULL,
 CONSTRAINT tj_role_ope_rgp_ror_pkey PRIMARY KEY(ror_rgp_id, ror_ope_id, ror_rol_id),
 CONSTRAINT c_fk_ope_ror FOREIGN KEY (ror_ope_id)
   REFERENCES public.tr_operateur_ope(ope_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT c_fk_rgp_ror FOREIGN KEY (ror_rgp_id)
   REFERENCES public.t_regroupement_rgp(rgp_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT c_fk_rol_ror FOREIGN KEY (ror_rol_id)
   REFERENCES public.tr_role_rol(rol_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.tj_role_ope_rgp_ror
IS 'Table de jointure associant un regroupement à un opérateur et à un rôle pour cet opérateur';

COMMENT ON COLUMN public.tj_role_ope_rgp_ror.ror_rgp_id
IS 'Identifiant unique numérique du regroupement associé';

COMMENT ON COLUMN public.tj_role_ope_rgp_ror.ror_ope_id
IS 'Identifiant automatique numérique de l''opérateur associé';

COMMENT ON COLUMN public.tj_role_ope_rgp_ror.ror_rol_id
IS 'Identifiant automatique numérique du rôle associé';

COMMENT ON CONSTRAINT c_fk_ope_ror ON public.tj_role_ope_rgp_ror
IS 'Le champ ror_ope_id correspond obligatoirement à un opérateur existant';

COMMENT ON CONSTRAINT c_fk_rgp_ror ON public.tj_role_ope_rgp_ror
IS 'Le champ ror_rgp_id correspond obligatoirement à un regroupement existant';

COMMENT ON CONSTRAINT c_fk_rol_ror ON public.tj_role_ope_rgp_ror
IS 'Le champ ror_rol_id correspond obligatoirement à un rôle existant';

CREATE INDEX x_btr_ope_ror ON public.tj_role_ope_rgp_ror
 USING btree (ror_ope_id);

COMMENT ON INDEX public.x_btr_ope_ror
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';

CREATE INDEX x_btr_rgp_ror ON public.tj_role_ope_rgp_ror
 USING btree (ror_rgp_id);

COMMENT ON INDEX public.x_btr_rgp_ror
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';

CREATE INDEX x_btr_rol_ror ON public.tj_role_ope_rgp_ror
 USING btree (ror_rol_id);

COMMENT ON INDEX public.x_btr_rol_ror
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com)
Previous topic Chapter index Next topic