Schema
Owner
postgres
Tablespace
(default)
Descriptions
Table des methode utilisees pour le contour d'un dispositif. Informations relatives aux methodes de relevé de contours (Onglet GDE, colonne methode_contours)
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
meth_id |
serial |
|
nextval('tr_methode_contour_meth_meth_id_seq'::regclass) |
Identifiant automatique numérique de la methode de relevé de contours |
|||
|
|
meth_libelle |
varchar(50) |
|
|
Libelle de la methode de relevé de contours |
||
|
|
meth_definition |
varchar(255) |
|
|
|
|
Definition de la methode de relevé de contours |
Foreign Keys
There are no foreign keys for table tr_methode_contour_meth
Check Constraints
There are no check constraints for table tr_methode_contour_meth
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
meth_libelle |
|
Le libelle d'une methode doit être unique |
||
btree |
|
meth_id |
|
Triggers
There are no triggers for table tr_methode_contour_meth
Rules
There are no rules for table tr_methode_contour_meth
Policies
There are no policies for table tr_methode_contour_meth
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
dis_meth_id |
meth_id |
No Action |
No Action |
|
Immediate |
Un dispositif correspond à une ou aucune methode de calcul des contours |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tr_methode_contour_meth (
meth_id SERIAL,
meth_libelle VARCHAR(50) NOT NULL,
meth_definition VARCHAR(255),
CONSTRAINT c_uni_libelle_meth UNIQUE(meth_libelle),
CONSTRAINT tr_methode_contour_meth_pkey PRIMARY KEY(meth_id)
)
WITH (oids = false);
COMMENT ON TABLE public.tr_methode_contour_meth
IS 'Table des methode utilisees pour le contour d''un dispositif. Informations relatives aux methodes de relevé de contours (Onglet GDE, colonne methode_contours)';
COMMENT ON COLUMN public.tr_methode_contour_meth.meth_id
IS 'Identifiant automatique numérique de la methode de relevé de contours';
COMMENT ON COLUMN public.tr_methode_contour_meth.meth_libelle
IS 'Libelle de la methode de relevé de contours';
COMMENT ON COLUMN public.tr_methode_contour_meth.meth_definition
IS 'Definition de la methode de relevé de contours';
COMMENT ON CONSTRAINT c_uni_libelle_meth ON public.tr_methode_contour_meth
IS 'Le libelle d''une methode doit être unique';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |