Schema
Owner
postgres
Tablespace
(default)
Descriptions
Table de jointure associant une mesure à un opérateur et à un rôle pour cet opérateur
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
roz_mzon_id |
integer |
|
|
|
Identifiant unique numérique de la mesure associée |
|||
roz_ope_id |
integer |
|
|
|
Identifiant automatique numérique de l'opérateur associé |
|||
roz_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 |
---|---|---|---|---|---|---|---|---|
roz_mzon_id |
mzon_id |
No Action |
No Action |
|
Immediate |
Le champ roz_mzon_id correspond obligatoirement à une mesure existante |
||
roz_ope_id |
ope_id |
No Action |
No Action |
|
Immediate |
Le champ roz_ope_id correspond obligatoirement à un opérateur existant |
||
roz_rol_id |
rol_id |
No Action |
No Action |
|
Immediate |
Le champ roz_rol_id correspond obligatoirement à un rôle existant |
Check Constraints
There are no check constraints for table tj_role_ope_mzon_roz
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
roz_mzon_id, roz_ope_id, roz_rol_id |
|
|||
btree |
|
roz_mzon_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
|
btree |
|
roz_ope_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
|
btree |
|
roz_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_mzon_roz
Rules
There are no rules for table tj_role_ope_mzon_roz
Policies
There are no policies for table tj_role_ope_mzon_roz
Referenced
There are no tables referenced by table tj_role_ope_mzon_roz
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tj_role_ope_mzon_roz (
roz_mzon_id INTEGER NOT NULL,
roz_ope_id INTEGER NOT NULL,
roz_rol_id INTEGER NOT NULL,
CONSTRAINT tj_role_ope_mzon_roz_pkey PRIMARY KEY(roz_mzon_id, roz_ope_id, roz_rol_id),
CONSTRAINT c_fk_mzon_roz FOREIGN KEY (roz_mzon_id)
REFERENCES public.t_mesure_mzon(mzon_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_ope_roz FOREIGN KEY (roz_ope_id)
REFERENCES public.tr_operateur_ope(ope_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_rol_roz FOREIGN KEY (roz_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_mzon_roz
IS 'Table de jointure associant une mesure à un opérateur et à un rôle pour cet opérateur';
COMMENT ON COLUMN public.tj_role_ope_mzon_roz.roz_mzon_id
IS 'Identifiant unique numérique de la mesure associée';
COMMENT ON COLUMN public.tj_role_ope_mzon_roz.roz_ope_id
IS 'Identifiant automatique numérique de l''opérateur associé';
COMMENT ON COLUMN public.tj_role_ope_mzon_roz.roz_rol_id
IS 'Identifiant automatique numérique du rôle associé';
COMMENT ON CONSTRAINT c_fk_mzon_roz ON public.tj_role_ope_mzon_roz
IS 'Le champ roz_mzon_id correspond obligatoirement à une mesure existante';
COMMENT ON CONSTRAINT c_fk_ope_roz ON public.tj_role_ope_mzon_roz
IS 'Le champ roz_ope_id correspond obligatoirement à un opérateur existant';
COMMENT ON CONSTRAINT c_fk_rol_roz ON public.tj_role_ope_mzon_roz
IS 'Le champ roz_rol_id correspond obligatoirement à un rôle existant';
CREATE INDEX x_btr_mzon_roz ON public.tj_role_ope_mzon_roz
USING btree (roz_mzon_id);
COMMENT ON INDEX public.x_btr_mzon_roz
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
CREATE INDEX x_btr_ope_roz ON public.tj_role_ope_mzon_roz
USING btree (roz_ope_id);
COMMENT ON INDEX public.x_btr_ope_roz
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
CREATE INDEX x_btr_rol_roz ON public.tj_role_ope_mzon_roz
USING btree (roz_rol_id);
COMMENT ON INDEX public.x_btr_rol_roz
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) |