Schema
Owner
postgres
Tablespace
(default)
Descriptions
Table de jointure associant une branche à un verticille.
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
bch_ver_id |
integer |
|
|
|
Identifiant unique numérique du verticille de l'association |
|||
bch_bra_id |
integer |
|
|
|
Identifiant automatique numérique de la branche de l'association |
|||
|
|
bch_verticillaire |
boolean |
|
|
|
Booléen précisant si la branche est verticillaire (true) ou pas (false = interverticillaire) |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
bch_bra_id |
bra_id |
No Action |
No Action |
|
Immediate |
Le champ bch_bra_id correspond obligatoirement à une branche existante |
||
bch_ver_id |
ver_id |
No Action |
No Action |
|
Immediate |
Le champ bch_ver_id correspond obligatoirement à un verticille existant |
Check Constraints
There are no check constraints for table tj_branchaison_bch
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
bch_ver_id, bch_bra_id |
|
|||
btree |
|
bch_bra_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
|
btree |
|
bch_ver_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
Triggers
There are no triggers for table tj_branchaison_bch
Rules
There are no rules for table tj_branchaison_bch
Policies
There are no policies for table tj_branchaison_bch
Referenced
There are no tables referenced by table tj_branchaison_bch
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
67809 |
Pages |
367 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tj_branchaison_bch (
bch_ver_id INTEGER NOT NULL,
bch_bra_id INTEGER NOT NULL,
bch_verticillaire BOOLEAN NOT NULL,
CONSTRAINT tj_branchaison_bch_pkey PRIMARY KEY(bch_ver_id, bch_bra_id),
CONSTRAINT c_fk_bra_bch FOREIGN KEY (bch_bra_id)
REFERENCES public.t_branche_bra(bra_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_ver_bch FOREIGN KEY (bch_ver_id)
REFERENCES public.t_verticille_ver(ver_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON TABLE public.tj_branchaison_bch
IS 'Table de jointure associant une branche à un verticille.';
COMMENT ON COLUMN public.tj_branchaison_bch.bch_ver_id
IS 'Identifiant unique numérique du verticille de l''association';
COMMENT ON COLUMN public.tj_branchaison_bch.bch_bra_id
IS 'Identifiant automatique numérique de la branche de l''association';
COMMENT ON COLUMN public.tj_branchaison_bch.bch_verticillaire
IS 'Booléen précisant si la branche est verticillaire (true) ou pas (false = interverticillaire)';
COMMENT ON CONSTRAINT c_fk_bra_bch ON public.tj_branchaison_bch
IS 'Le champ bch_bra_id correspond obligatoirement à une branche existante';
COMMENT ON CONSTRAINT c_fk_ver_bch ON public.tj_branchaison_bch
IS 'Le champ bch_ver_id correspond obligatoirement à un verticille existant';
CREATE INDEX x_btr_bra_bch ON public.tj_branchaison_bch
USING btree (bch_bra_id);
COMMENT ON INDEX public.x_btr_bra_bch
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
CREATE INDEX x_btr_ver_bch ON public.tj_branchaison_bch
USING btree (bch_ver_id);
COMMENT ON INDEX public.x_btr_ver_bch
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 |