Schema
Owner
postgres
Tablespace
(default)
Descriptions
Table de jointure associant un dispositif et un taxon, un dispositif pouvant traiter de plusieurs taxons
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
dita_dis_id |
integer |
|
|
|
Identifiant unique numérique du dispositif |
|||
dita_tax_id |
integer |
|
|
|
Identifiant numérique du taxon |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
dita_dis_id |
dis_id |
No Action |
No Action |
|
Immediate |
Le champ dita_dis_id correspond obligatoirement à un dispositif existant |
||
dita_tax_id |
tax_id |
No Action |
No Action |
|
Immediate |
Le champ dita_tax_id correspond obligatoirement à un taxon existant |
Check Constraints
There are no check constraints for table tj_dispositif_taxon_dita
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
dita_dis_id, dita_tax_id |
|
|||
btree |
|
dita_dis_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
|
btree |
|
dita_tax_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
Triggers
There are no triggers for table tj_dispositif_taxon_dita
Rules
There are no rules for table tj_dispositif_taxon_dita
Policies
There are no policies for table tj_dispositif_taxon_dita
Referenced
There are no tables referenced by table tj_dispositif_taxon_dita
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tj_dispositif_taxon_dita (
dita_dis_id INTEGER NOT NULL,
dita_tax_id INTEGER NOT NULL,
CONSTRAINT tj_dispositif_taxon_dita_pkey PRIMARY KEY(dita_dis_id, dita_tax_id),
CONSTRAINT c_fk_dis_dita FOREIGN KEY (dita_dis_id)
REFERENCES public.t_dispositif_dis(dis_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_tax_dita FOREIGN KEY (dita_tax_id)
REFERENCES public.tr_taxon_tax(tax_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
)
WITH (oids = false);
COMMENT ON TABLE public.tj_dispositif_taxon_dita
IS 'Table de jointure associant un dispositif et un taxon, un dispositif pouvant traiter de plusieurs taxons';
COMMENT ON COLUMN public.tj_dispositif_taxon_dita.dita_dis_id
IS 'Identifiant unique numérique du dispositif';
COMMENT ON COLUMN public.tj_dispositif_taxon_dita.dita_tax_id
IS 'Identifiant numérique du taxon';
COMMENT ON CONSTRAINT c_fk_dis_dita ON public.tj_dispositif_taxon_dita
IS 'Le champ dita_dis_id correspond obligatoirement à un dispositif existant';
COMMENT ON CONSTRAINT c_fk_tax_dita ON public.tj_dispositif_taxon_dita
IS 'Le champ dita_tax_id correspond obligatoirement à un taxon existant';
CREATE INDEX x_btr_fkey_dis_dita ON public.tj_dispositif_taxon_dita
USING btree (dita_dis_id);
COMMENT ON INDEX public.x_btr_fkey_dis_dita
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
CREATE INDEX x_btr_fkey_tax_dita ON public.tj_dispositif_taxon_dita
USING btree (dita_tax_id);
COMMENT ON INDEX public.x_btr_fkey_tax_dita
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 |