Schema
public
Owner
croissance
Tablespace
(default)
Descriptions
Traitement associant une métadonnée (Code et description du traitement) à une parcelle unitaire.
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
trt_pau_id |
bigint |
|
|
|
Identifiant de la parcelle unitaire |
|||
trt_aut_id |
integer |
|
|
|
Identifiant de la métadonnée |
|||
|
|
trt_valeur |
varchar(128) |
|
|
|
|
Valeur associée au traitement |
|
trt_date |
date |
|
|
|
Date du traitement |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
trt_aut_id |
aut_id |
No Action |
No Action |
|
Immediate |
Une autre information peut être associée à une ou plusieurs parcelles unitaires (cela constitute un traitement) |
||
trt_pau_id |
pau_id |
Cascade |
No Action |
|
Immediate |
Une parcelle unitaire peut faire l'objet de un ou plusieurs traitements (autres informations associées) |
Check Constraints
There are no check constraints for table tj_traitement_trt
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
trt_pau_id, trt_aut_id, trt_date |
|
Triggers
There are no triggers for table tj_traitement_trt
Rules
There are no rules for table tj_traitement_trt
Policies
There are no policies for table tj_traitement_trt
Referenced
There are no tables referenced by table tj_traitement_trt
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tj_traitement_trt (
trt_pau_id BIGINT NOT NULL,
trt_aut_id INTEGER NOT NULL,
trt_valeur VARCHAR(128),
trt_date DATE NOT NULL,
CONSTRAINT t_traitement_trt_pkey PRIMARY KEY(trt_pau_id, trt_aut_id, trt_date),
CONSTRAINT c_fk_aut_trt FOREIGN KEY (trt_aut_id)
REFERENCES public.tr_autresinfos_aut(aut_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_pau_trt FOREIGN KEY (trt_pau_id)
REFERENCES public.t_parcelleunitaire_pau(pau_id)
ON DELETE CASCADE
ON UPDATE NO ACTION
NOT DEFERRABLE
)
WITH (oids = false);
COMMENT ON TABLE public.tj_traitement_trt
IS 'Traitement associant une métadonnée (Code et description du traitement) à une parcelle unitaire.';
COMMENT ON COLUMN public.tj_traitement_trt.trt_pau_id
IS 'Identifiant de la parcelle unitaire';
COMMENT ON COLUMN public.tj_traitement_trt.trt_aut_id
IS 'Identifiant de la métadonnée';
COMMENT ON COLUMN public.tj_traitement_trt.trt_valeur
IS 'Valeur associée au traitement';
COMMENT ON COLUMN public.tj_traitement_trt.trt_date
IS 'Date du traitement';
COMMENT ON CONSTRAINT c_fk_aut_trt ON public.tj_traitement_trt
IS 'Une autre information peut être associée à une ou plusieurs parcelles unitaires (cela constitute un traitement)';
COMMENT ON CONSTRAINT c_fk_pau_trt ON public.tj_traitement_trt
IS 'Une parcelle unitaire peut faire l''objet de un ou plusieurs traitements (autres informations associées)';
This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37 |