Schema
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 |
---|---|---|---|---|---|---|---|---|
gmz_mzon_id |
integer |
|
|
|
Identifiant unique numérique de la mesure associée |
|||
gmz_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 |
---|---|---|---|---|---|---|---|---|
gmz_mzon_id |
mzon_id |
No Action |
No Action |
|
Immediate |
Le champ gmz_mzon_id correspond obligatoirement à une mesure existante |
||
gmz_rgp_id |
rgp_id |
No Action |
No Action |
|
Immediate |
Le champ gmz_rgp_id correspond obligatoirement à un regroupememnt existant |
Check Constraints
There are no check constraints for table tj_rgp_mzon_gmz
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
gmz_mzon_id, gmz_rgp_id |
|
|||
btree |
|
gmz_mzon_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
|
btree |
|
gmz_rgp_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
Triggers
There are no triggers for table tj_rgp_mzon_gmz
Rules
There are no rules for table tj_rgp_mzon_gmz
Policies
There are no policies for table tj_rgp_mzon_gmz
Referenced
There are no tables referenced by table tj_rgp_mzon_gmz
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tj_rgp_mzon_gmz (
gmz_mzon_id INTEGER NOT NULL,
gmz_rgp_id INTEGER NOT NULL,
CONSTRAINT tj_rgp_mzon_gmz_pkey PRIMARY KEY(gmz_mzon_id, gmz_rgp_id),
CONSTRAINT c_fk_mzon_gmz FOREIGN KEY (gmz_mzon_id)
REFERENCES public.t_mesure_mzon(mzon_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_rgp_gmz FOREIGN KEY (gmz_rgp_id)
REFERENCES public.t_regroupement_rgp(rgp_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON TABLE public.tj_rgp_mzon_gmz
IS 'Table de jointure associant une mesure à un regroupement.';
COMMENT ON COLUMN public.tj_rgp_mzon_gmz.gmz_mzon_id
IS 'Identifiant unique numérique de la mesure associée';
COMMENT ON COLUMN public.tj_rgp_mzon_gmz.gmz_rgp_id
IS 'Identifiant automatique numérique du regroupement associé';
COMMENT ON CONSTRAINT c_fk_mzon_gmz ON public.tj_rgp_mzon_gmz
IS 'Le champ gmz_mzon_id correspond obligatoirement à une mesure existante';
COMMENT ON CONSTRAINT c_fk_rgp_gmz ON public.tj_rgp_mzon_gmz
IS 'Le champ gmz_rgp_id correspond obligatoirement à un regroupememnt existant';
CREATE INDEX x_btr_mzon_gmz ON public.tj_rgp_mzon_gmz
USING btree (gmz_mzon_id);
COMMENT ON INDEX public.x_btr_mzon_gmz
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
CREATE INDEX x_btr_rgp_gmz ON public.tj_rgp_mzon_gmz
USING btree (gmz_rgp_id);
COMMENT ON INDEX public.x_btr_rgp_gmz
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) |