Schema
Owner
arboretum
Tablespace
(default)
Descriptions
Table de jointure associant une mesure à un regroupement.
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
gma_marb_id |
integer |
|
|
|
Identifiant unique numérique de la mesure associée |
|||
gma_rgp_id |
integer |
|
|
|
Identifiant automatique numérique du regroupement associé |
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
gma_marb_id |
marb_id |
No Action |
No Action |
|
Immediate |
Le champ gma_marb_id correspond obligatoirement à une mesure existante |
||
gma_rgp_id |
rgp_id |
No Action |
No Action |
|
Immediate |
Le champ gma_rgp_id correspond obligatoirement à un regroupememnt existant |
Check Constraints
There are no check constraints for table tj_rgp_marb_gma
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
gma_marb_id, gma_rgp_id |
|
|||
btree |
|
gma_marb_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
|
btree |
|
gma_rgp_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
Triggers
There are no triggers for table tj_rgp_marb_gma
Rules
There are no rules for table tj_rgp_marb_gma
Policies
There are no policies for table tj_rgp_marb_gma
Referenced
There are no tables referenced by table tj_rgp_marb_gma
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tj_rgp_marb_gma (
gma_marb_id INTEGER NOT NULL,
gma_rgp_id INTEGER NOT NULL,
CONSTRAINT tj_rgp_marb_gma_pkey PRIMARY KEY(gma_marb_id, gma_rgp_id),
CONSTRAINT c_fk_marb_gma FOREIGN KEY (gma_marb_id)
REFERENCES public.t_mesure_marb(marb_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_rgp_gma FOREIGN KEY (gma_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_marb_gma
IS 'Table de jointure associant une mesure à un regroupement.';
COMMENT ON COLUMN public.tj_rgp_marb_gma.gma_marb_id
IS 'Identifiant unique numérique de la mesure associée';
COMMENT ON COLUMN public.tj_rgp_marb_gma.gma_rgp_id
IS 'Identifiant automatique numérique du regroupement associé';
COMMENT ON CONSTRAINT c_fk_marb_gma ON public.tj_rgp_marb_gma
IS 'Le champ gma_marb_id correspond obligatoirement à une mesure existante';
COMMENT ON CONSTRAINT c_fk_rgp_gma ON public.tj_rgp_marb_gma
IS 'Le champ gma_rgp_id correspond obligatoirement à un regroupememnt existant';
CREATE INDEX x_btr_marb_gma ON public.tj_rgp_marb_gma
USING btree (gma_marb_id);
COMMENT ON INDEX public.x_btr_marb_gma
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
CREATE INDEX x_btr_rgp_gma ON public.tj_rgp_marb_gma
USING btree (gma_rgp_id);
COMMENT ON INDEX public.x_btr_rgp_gma
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) at 07/12/2018 13:23 |