Schema
public
Owner
postgres
Tablespace
(default)
Descriptions
Table de jointure associant une mesure à un regroupement.
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
gmo_mobj_id |
integer |
|
|
|
Identifiant unique numérique de la mesure associée |
|||
gmo_rgp_id |
integer |
|
|
|
Identifiant automatique numérique du regroupement associé |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
gmo_mobj_id |
mobj_id |
No Action |
No Action |
|
Immediate |
Le champ gmo_mobj_id correspond obligatoirement à une mesure existante |
||
gmo_rgp_id |
rgp_id |
No Action |
No Action |
|
Immediate |
Le champ gmo_rgp_id correspond obligatoirement à un regroupememnt existant |
Check Constraints
There are no check constraints for table tj_rgp_mobj_gmo
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
gmo_mobj_id, gmo_rgp_id |
|
|||
btree |
|
gmo_mobj_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
|
btree |
|
gmo_rgp_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
Triggers
There are no triggers for table tj_rgp_mobj_gmo
Rules
There are no rules for table tj_rgp_mobj_gmo
Policies
There are no policies for table tj_rgp_mobj_gmo
Referenced
There are no tables referenced by table tj_rgp_mobj_gmo
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tj_rgp_mobj_gmo (
gmo_mobj_id INTEGER NOT NULL,
gmo_rgp_id INTEGER NOT NULL,
CONSTRAINT tj_rgp_mobj_gmo_pkey PRIMARY KEY(gmo_mobj_id, gmo_rgp_id),
CONSTRAINT c_fk_mobj_gmo FOREIGN KEY (gmo_mobj_id)
REFERENCES public.t_mesure_mobj(mobj_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_rgp_gmo FOREIGN KEY (gmo_rgp_id)
REFERENCES public.t_regroupement_rgp(rgp_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
)
WITH (oids = false);
COMMENT ON TABLE public.tj_rgp_mobj_gmo
IS 'Table de jointure associant une mesure à un regroupement.';
COMMENT ON COLUMN public.tj_rgp_mobj_gmo.gmo_mobj_id
IS 'Identifiant unique numérique de la mesure associée';
COMMENT ON COLUMN public.tj_rgp_mobj_gmo.gmo_rgp_id
IS 'Identifiant automatique numérique du regroupement associé';
COMMENT ON CONSTRAINT c_fk_mobj_gmo ON public.tj_rgp_mobj_gmo
IS 'Le champ gmo_mobj_id correspond obligatoirement à une mesure existante';
COMMENT ON CONSTRAINT c_fk_rgp_gmo ON public.tj_rgp_mobj_gmo
IS 'Le champ gmo_rgp_id correspond obligatoirement à un regroupememnt existant';
CREATE INDEX x_btr_mobj_gmo ON public.tj_rgp_mobj_gmo
USING btree (gmo_mobj_id);
COMMENT ON INDEX public.x_btr_mobj_gmo
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
CREATE INDEX x_btr_rgp_gmo ON public.tj_rgp_mobj_gmo
USING btree (gmo_rgp_id);
COMMENT ON INDEX public.x_btr_rgp_gmo
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
01/06/2018 |