Schema
Owner
postgres
Tablespace
(default)
Descriptions
A characteristic can belong to from 0 to n characteristic groups / Une caractéristique peut faire partie de 0 à n groupes de caractéristiques
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
conn_gch_id |
integer |
|
|
|
Automatic ID of the characteristic group related to the environment / Identifiant automatique du groupe de caractéristiques de l'environnement associé |
|||
conn_char_id |
integer |
|
|
|
Automatic ID of the related characteristic / Identifiant automatique de la caractéristique associée |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
conn_char_id |
char_id |
No Action |
No Action |
|
Immediate |
Connection involves only one characteristic / L'association concerne une et une seule caractéristique |
||
conn_gch_id |
gch_id |
No Action |
No Action |
|
Immediate |
Connection involves only one characteristic group / L'association concerne un et un seul groupe de caractéristiques |
Check Constraints
There are no check constraints for table tj_connection_char_gch_conn
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
conn_gch_id, conn_char_id |
|
|||
btree |
|
conn_char_id |
|
|
Foreign key index linking a characteristic to a characteristic group / Index sur la clé étrangère rattachant une caractéristique à un groupe de caractéristiques |
|
btree |
|
conn_gch_id |
|
|
Foreign key index linking a characteristic group to a characteristic / Index sur la clé étrangère rattachant un groupe de caractéristiques à une caractéristique |
Triggers
There are no triggers for table tj_connection_char_gch_conn
Rules
There are no rules for table tj_connection_char_gch_conn
Policies
There are no policies for table tj_connection_char_gch_conn
Referenced
There are no tables referenced by table tj_connection_char_gch_conn
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tj_connection_char_gch_conn (
conn_gch_id INTEGER NOT NULL,
conn_char_id INTEGER NOT NULL,
CONSTRAINT tj_connection_char_gch_conn_pkey PRIMARY KEY(conn_gch_id, conn_char_id),
CONSTRAINT c_fk_char_conn FOREIGN KEY (conn_char_id)
REFERENCES public.tr_characteristic_char(char_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_gch_conn FOREIGN KEY (conn_gch_id)
REFERENCES public.t_group_characteristic_gch(gch_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
)
WITH (oids = false);
COMMENT ON TABLE public.tj_connection_char_gch_conn
IS 'A characteristic can belong to from 0 to n characteristic groups / Une caractéristique peut faire partie de 0 à n groupes de caractéristiques';
COMMENT ON COLUMN public.tj_connection_char_gch_conn.conn_gch_id
IS 'Automatic ID of the characteristic group related to the environment / Identifiant automatique du groupe de caractéristiques de l''environnement associé';
COMMENT ON COLUMN public.tj_connection_char_gch_conn.conn_char_id
IS 'Automatic ID of the related characteristic / Identifiant automatique de la caractéristique associée';
COMMENT ON CONSTRAINT c_fk_char_conn ON public.tj_connection_char_gch_conn
IS 'Connection involves only one characteristic / L''association concerne une et une seule caractéristique';
COMMENT ON CONSTRAINT c_fk_gch_conn ON public.tj_connection_char_gch_conn
IS 'Connection involves only one characteristic group / L''association concerne un et un seul groupe de caractéristiques';
CREATE INDEX x_btr_char_conn ON public.tj_connection_char_gch_conn
USING btree (conn_char_id);
COMMENT ON INDEX public.x_btr_char_conn
IS 'Foreign key index linking a characteristic to a characteristic group / Index sur la clé étrangère rattachant une caractéristique à un groupe de caractéristiques';
CREATE INDEX x_btr_gch_conn ON public.tj_connection_char_gch_conn
USING btree (conn_gch_id);
COMMENT ON INDEX public.x_btr_gch_conn
IS 'Foreign key index linking a characteristic group to a characteristic / Index sur la clé étrangère rattachant un groupe de caractéristiques à une caractéristique';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 19/06/2019 10:17 |