Schema
Owner
postgres
Tablespace
(default)
Descriptions
Table of characteristics describing the measure environments / Table des caractéristiques qui précisent les environnements de mesure
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
char_id |
serial |
|
nextval('tr_characteristic_char_char_id_seq'::regclass) |
Automatic ID of the characteristic / Identifiant automatique de la caractéristique |
|||
|
char_fca_id |
integer |
|
|
|
Automatic ID of the characteristic family / Identifiant automatique de la famille de caractéristiques |
||
|
|
char_name |
varchar(64) |
|
|
|
Unique characteristic name / Nom unique de la caractéristique |
|
|
|
char_definition |
varchar |
|
|
|
Characteristic definition / Définition de la caractéristique |
|
|
|
char_unit |
varchar(20) |
|
|
|
|
Unit of the characteristic / Unité dans laquelle la caractéristique est mesurée. |
|
|
char_type |
varchar(25) |
|
|
|
Type of the characteristic measure allowing control and data conversion on measures encoded as character strings / Type de données des mesures de la caractéristique permettant des contrôles et des conversions sur les valeurs mesurées et stockées sous forme de chaînes de caractères. |
|
|
|
char_controle |
varchar(128) |
|
|
|
|
Character string allowing controls on measure values according to information from char_type / Chaîne de caractère réglementée permettant d'effectuer des contrôles sur les valeurs de mesure en association avec l'information char_type. |
|
|
char_link |
varchar |
|
|
|
|
Optional link to another source of information about the characteristic / Lien éventuel vers une source d'information complémentaire concernant la caractéristique |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
char_fca_id |
fca_id |
No Action |
No Action |
|
Immediate |
A characteristic is related to only one characteristic family. / Une caractéristique est rattachée à une et une seule famille de caractéristiques |
Check Constraints
There are no check constraints for table tr_characteristic_char
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
char_fca_id, char_name |
|
Uniqueness of the name and the ID of the characteristic family / Unicité du couple nom - identifiant de la famille de caractéristique de rattachement |
||
btree |
|
char_id |
|
|||
btree |
|
char_fca_id |
|
|
Foreign key index linking a characteristic to a characteristic family / Index sur la clé étrangère rattachant une caractéristique à une famille de caractéristiques |
Triggers
There are no triggers for table tr_characteristic_char
Rules
There are no rules for table tr_characteristic_char
Policies
There are no policies for table tr_characteristic_char
Referenced
Table | Schema | Foreign Key | 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 |
||||
mch_char_id |
char_id |
No Action |
No Action |
|
Immediate |
Characteristic measure is related to only one characteristic / La mesure de caractéristique est associée à une et un seule caractéristique |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tr_characteristic_char (
char_id SERIAL,
char_fca_id INTEGER NOT NULL,
char_name VARCHAR(64) NOT NULL,
char_definition VARCHAR NOT NULL,
char_unit VARCHAR(20),
char_type VARCHAR(25) NOT NULL,
char_controle VARCHAR(128),
char_link VARCHAR,
CONSTRAINT tr_characteristic_char_pkey PRIMARY KEY(char_id),
CONSTRAINT c_fk_fca_char FOREIGN KEY (char_fca_id)
REFERENCES public.tr_family_characteristic_fca(fca_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
)
WITH (oids = false);
COMMENT ON TABLE public.tr_characteristic_char
IS 'Table of characteristics describing the measure environments / Table des caractéristiques qui précisent les environnements de mesure';
COMMENT ON COLUMN public.tr_characteristic_char.char_id
IS 'Automatic ID of the characteristic / Identifiant automatique de la caractéristique';
COMMENT ON COLUMN public.tr_characteristic_char.char_fca_id
IS 'Automatic ID of the characteristic family / Identifiant automatique de la famille de caractéristiques';
COMMENT ON COLUMN public.tr_characteristic_char.char_name
IS 'Unique characteristic name / Nom unique de la caractéristique';
COMMENT ON COLUMN public.tr_characteristic_char.char_definition
IS 'Characteristic definition / Définition de la caractéristique';
COMMENT ON COLUMN public.tr_characteristic_char.char_unit
IS 'Unit of the characteristic / Unité dans laquelle la caractéristique est mesurée.';
COMMENT ON COLUMN public.tr_characteristic_char.char_type
IS 'Type of the characteristic measure allowing control and data conversion on measures encoded as character strings / Type de données des mesures de la caractéristique permettant des contrôles et des conversions sur les valeurs mesurées et stockées sous forme de chaînes de caractères.';
COMMENT ON COLUMN public.tr_characteristic_char.char_controle
IS 'Character string allowing controls on measure values according to information from char_type / Chaîne de caractère réglementée permettant d''effectuer des contrôles sur les valeurs de mesure en association avec l''information char_type.';
COMMENT ON COLUMN public.tr_characteristic_char.char_link
IS 'Optional link to another source of information about the characteristic / Lien éventuel vers une source d''information complémentaire concernant la caractéristique';
COMMENT ON CONSTRAINT c_fk_fca_char ON public.tr_characteristic_char
IS 'A characteristic is related to only one characteristic family. / Une caractéristique est rattachée à une et une seule famille de caractéristiques';
CREATE UNIQUE INDEX c_uni_fca_name_char ON public.tr_characteristic_char
USING btree (char_fca_id, char_name COLLATE pg_catalog."default");
COMMENT ON INDEX public.c_uni_fca_name_char
IS 'Uniqueness of the name and the ID of the characteristic family / Unicité du couple nom - identifiant de la famille de caractéristique de rattachement';
CREATE INDEX x_btr_fca_car ON public.tr_characteristic_char
USING btree (char_fca_id);
COMMENT ON INDEX public.x_btr_fca_car
IS 'Foreign key index linking a characteristic to a characteristic family / Index sur la clé étrangère rattachant une caractéristique à une famille de caractéristiques';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 19/06/2019 10:17 |