Schema
Owner
postgres
Tablespace
(default)
Descriptions
Table de jointure associant un extrait à une propriété
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
proe_ext_id |
integer |
|
|
|
Identifiant unique numérique de l'extrait de l'association |
|||
proe_pro_id |
integer |
|
|
|
Identifiant automatique numérique de la propriété de l'association |
|||
|
|
proe_niveau |
varchar |
|
|
|
|
Niveau de représentation de la propriété pour l'extrait |
|
|
proe_publi2 |
boolean |
|
|
|
|
Booléen indiquant si la propriété associée à l'extrait est décrite dans la seconde publication associée à l'extrait |
|
proe_test_realise |
varchar(200) |
|
|
|
Test réalisé pour qualifier la propriété de l'extrait |
||
|
|
proe_commentaire |
varchar |
|
|
|
|
Commentaire associé |
proe_slv_id |
integer |
|
|
|
Identifiant automatique numérique du solvant de l'association |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
proe_ext_id |
ext_id |
No Action |
No Action |
|
Immediate |
Le champ proe_ext_id correspond obligatoirement à un extrait existant |
||
proe_pro_id |
pro_id |
No Action |
No Action |
|
Immediate |
Le champ proe_pro_id correspond obligatoirement à une propriété existante |
||
proe_slv_id |
slv_id |
No Action |
No Action |
|
Immediate |
Le champ proe_slv_id correspond obligatoirement à un solvant existant |
Check Constraints
There are no check constraints for table tj_propriete_extrait_proe
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
proe_ext_id, proe_pro_id, proe_slv_id, proe_test_realise |
|
|||
btree |
|
proe_ext_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
|
btree |
|
proe_pro_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
|
btree |
|
proe_slv_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
Triggers
There are no triggers for table tj_propriete_extrait_proe
Rules
There are no rules for table tj_propriete_extrait_proe
Policies
There are no policies for table tj_propriete_extrait_proe
Referenced
There are no tables referenced by table tj_propriete_extrait_proe
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tj_propriete_extrait_proe (
proe_ext_id INTEGER NOT NULL,
proe_pro_id INTEGER NOT NULL,
proe_niveau VARCHAR,
proe_publi2 BOOLEAN,
proe_test_realise VARCHAR(200) NOT NULL,
proe_commentaire VARCHAR,
proe_slv_id INTEGER NOT NULL,
CONSTRAINT tj_propriete_extrait_proe_pkey PRIMARY KEY(proe_ext_id, proe_pro_id, proe_slv_id, proe_test_realise),
CONSTRAINT c_fk_ext_proe FOREIGN KEY (proe_ext_id)
REFERENCES public.t_extrait_ext(ext_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_pro_proe FOREIGN KEY (proe_pro_id)
REFERENCES public.tr_propriete_pro(pro_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_slv_proe FOREIGN KEY (proe_slv_id)
REFERENCES public.tr_solvant_slv(slv_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON TABLE public.tj_propriete_extrait_proe
IS 'Table de jointure associant un extrait à une propriété';
COMMENT ON COLUMN public.tj_propriete_extrait_proe.proe_ext_id
IS 'Identifiant unique numérique de l''extrait de l''association';
COMMENT ON COLUMN public.tj_propriete_extrait_proe.proe_pro_id
IS 'Identifiant automatique numérique de la propriété de l''association';
COMMENT ON COLUMN public.tj_propriete_extrait_proe.proe_niveau
IS 'Niveau de représentation de la propriété pour l''extrait';
COMMENT ON COLUMN public.tj_propriete_extrait_proe.proe_publi2
IS 'Booléen indiquant si la propriété associée à l''extrait est décrite dans la seconde publication associée à l''extrait';
COMMENT ON COLUMN public.tj_propriete_extrait_proe.proe_test_realise
IS 'Test réalisé pour qualifier la propriété de l''extrait';
COMMENT ON COLUMN public.tj_propriete_extrait_proe.proe_commentaire
IS 'Commentaire associé';
COMMENT ON COLUMN public.tj_propriete_extrait_proe.proe_slv_id
IS 'Identifiant automatique numérique du solvant de l''association';
COMMENT ON CONSTRAINT c_fk_ext_proe ON public.tj_propriete_extrait_proe
IS 'Le champ proe_ext_id correspond obligatoirement à un extrait existant';
COMMENT ON CONSTRAINT c_fk_pro_proe ON public.tj_propriete_extrait_proe
IS 'Le champ proe_pro_id correspond obligatoirement à une propriété existante';
COMMENT ON CONSTRAINT c_fk_slv_proe ON public.tj_propriete_extrait_proe
IS 'Le champ proe_slv_id correspond obligatoirement à un solvant existant';
CREATE INDEX x_btr_ext_proe ON public.tj_propriete_extrait_proe
USING btree (proe_ext_id);
COMMENT ON INDEX public.x_btr_ext_proe
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
CREATE INDEX x_btr_pro_proe ON public.tj_propriete_extrait_proe
USING btree (proe_pro_id);
COMMENT ON INDEX public.x_btr_pro_proe
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
CREATE INDEX x_btr_slv_proe ON public.tj_propriete_extrait_proe
USING btree (proe_slv_id);
COMMENT ON INDEX public.x_btr_slv_proe
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 |