pggeodb.nancy.inra.fr/db_croissance - db_croissance on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Table: tr_zone_zon

 

 

Schema

public

 

Owner

croissance

 

Tablespace

(default)

 

Descriptions

Table des zones d'étude

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

zon_id

serial

 

nextval('tr_zone_zon_zon_id_seq'::regclass)

identifiant numérique automatique de la zone d'étude

 

 

zon_nom

varchar(25)

 

 

Nom de la zone

 

zon_id_zon_rattachement

integer

 

 

 

 

ID de la zone de rattachement (une zone pouvant être rattachée à une autre zone : Site rattaché à une forêt)

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_zon_zon

zon_id_zon_rattachement

public.tr_zone_zon

zon_id

No Action

No Action

 

Immediate

Une zone peut être rattachée à une et une seule zone existante

 

Check Constraints

There are no check constraints for table tr_zone_zon

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_nom_zon

btree

 

zon_nom

 

Unicité du nom de la zone et index sur le champ zon_nom

t_zone_zon_pkey

btree

 

zon_id

 

 

Triggers

There are no triggers for table tr_zone_zon

 

Rules

There are no rules for table tr_zone_zon

 

Policies

There are no policies for table tr_zone_zon

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tj_rattache_loc_zon_att

public

c_fk_zon_att

att_zon_id

public.tr_zone_zon

zon_id

No Action

No Action

 

Immediate

Une zone peut être associée à une ou plusieurs localisations

tr_zone_zon

public

c_fk_zon_zon

zon_id_zon_rattachement

public.tr_zone_zon

zon_id

No Action

No Action

 

Immediate

Une zone peut être rattachée à une et une seule zone existante

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tr_zone_zon (
 zon_id INTEGER DEFAULT nextval('tr_zone_zon_zon_id_seq'::regclass) NOT NULL,
 zon_nom VARCHAR(25) NOT NULL,
 zon_id_zon_rattachement INTEGER,
 CONSTRAINT t_zone_zon_pkey PRIMARY KEY(zon_id),
 CONSTRAINT c_fk_zon_zon FOREIGN KEY (zon_id_zon_rattachement)
   REFERENCES public.tr_zone_zon(zon_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

)
WITH (oids = false);

COMMENT ON TABLE public.tr_zone_zon
IS 'Table des zones d''étude';

COMMENT ON COLUMN public.tr_zone_zon.zon_id
IS 'identifiant numérique automatique de la zone d''étude';

COMMENT ON COLUMN public.tr_zone_zon.zon_nom
IS 'Nom de la zone';

COMMENT ON COLUMN public.tr_zone_zon.zon_id_zon_rattachement
IS 'ID de la zone de rattachement (une zone pouvant être rattachée à une autre zone : Site rattaché à une forêt)';

COMMENT ON CONSTRAINT c_fk_zon_zon ON public.tr_zone_zon
IS 'Une zone peut être rattachée à une et une seule zone existante';

CREATE UNIQUE INDEX c_uni_nom_zon ON public.tr_zone_zon
 USING btree (zon_nom COLLATE pg_catalog."default");

COMMENT ON INDEX public.c_uni_nom_zon
IS 'Unicité du nom de la zone et index sur le champ zon_nom';

This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37
Previous topic Chapter index Next topic