Schema
public
Owner
phyto
Tablespace
(default)
Descriptions
Table permettant d'associer un code alphanumérique court avec une définition. Cette table permet une nomenclature des métadonnées non prévues initialement. Les traitements associés aux parcelle unitaires s'appuient sur cette table ainsi que les métadonnées associées aux localisation géographique
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
aut_id |
serial |
|
nextval('tr_autresinfos_aut_aut_id_seq'::regclass) |
Identifiant automatique de l'information complémentaire |
|||
|
|
aut_code |
varchar(16) |
|
|
Code de l'information complémentaire. Les règles de saisie de ce champ sont à fixer par chaque équipe pour permettre une extraction ciblée sur cette information. Ce champ est complété par le champ aut_nom. |
||
|
|
aut_nom |
varchar(64) |
|
|
|
|
Libellé permettant d'associer un nom à l'information complémentaire (par exemple 'Nom Forêt'). |
Foreign Keys
There are no foreign keys for table tr_autresinfos_aut
Check Constraints
There are no check constraints for table tr_autresinfos_aut
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
aut_code |
|
Unicité du code de la métadonnée / autre information |
||
btree |
|
aut_id |
|
Triggers
There are no triggers for table tr_autresinfos_aut
Rules
There are no rules for table tr_autresinfos_aut
Policies
There are no policies for table tr_autresinfos_aut
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
public |
loa_aut_id |
aut_id |
No Action |
No Action |
|
Immediate |
|
|||
public |
msa_aut_id |
aut_id |
Cascade |
No Action |
|
Immediate |
|
|||
public |
trt_aut_id |
aut_id |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
30 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tr_autresinfos_aut (
aut_id SERIAL,
aut_code VARCHAR(16) NOT NULL,
aut_nom VARCHAR(64),
CONSTRAINT c_uni_code_aut UNIQUE(aut_code),
CONSTRAINT t_autresinfos_aut_pkey PRIMARY KEY(aut_id)
) ;
COMMENT ON TABLE public.tr_autresinfos_aut
IS 'Table permettant d''associer un code alphanumérique court avec une définition. Cette table permet une nomenclature des métadonnées non prévues initialement. Les traitements associés aux parcelle unitaires s''appuient sur cette table ainsi que les métadonnées associées aux localisation géographique ';
COMMENT ON COLUMN public.tr_autresinfos_aut.aut_id
IS 'Identifiant automatique de l''information complémentaire';
COMMENT ON COLUMN public.tr_autresinfos_aut.aut_code
IS 'Code de l''information complémentaire. Les règles de saisie de ce champ sont à fixer par chaque équipe pour permettre une extraction ciblée sur cette information. Ce champ est complété par le champ aut_nom.';
COMMENT ON COLUMN public.tr_autresinfos_aut.aut_nom
IS 'Libellé permettant d''associer un nom à l''information complémentaire (par exemple ''Nom Forêt'').';
COMMENT ON CONSTRAINT c_uni_code_aut ON public.tr_autresinfos_aut
IS 'Unicité du code de la métadonnée / autre information';
This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37 |