db_ofb
Previous topic Chapter index Next topic

Table: tr_strate_str

 

 

Schema

public

 

Owner

postgres

 

Tablespace

(default)

 

Descriptions

Tables strates permettant la classification des végétaux en fonction des hauteurs

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

str_id

serial

 

nextval('tr_strate_str_str_id_seq'::regclass)

Identifiant numérique automatique de la strate

 

 

str_code_num

integer

 

 

Code numérique défini par l'OFB pour les srates (1=herbacée ...)

 

 

str_nom

varchar(50)

 

 

Dénomination de la strate utilisée sur le terrain

 

 

str_definition

varchar

 

 

 

 

Définition de la strate

 

Foreign Keys

There are no foreign keys for table tr_strate_str

 

Check Constraints

There are no check constraints for table tr_strate_str

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_code_str

btree

 

str_code_num

 

Le champ str_code_num est unique (pas de doublons)

c_uni_nom_str

btree

 

str_nom

 

Le champ str_nom est unique (pas de doublons)

tr_strate_str_pkey

btree

 

str_id

 

 

Triggers

There are no triggers for table tr_strate_str

 

Rules

There are no rules for table tr_strate_str

 

Policies

There are no policies for table tr_strate_str

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tj_indice_ind

public

c_fk_str_ind

ind_str_id

public.tr_strate_str

str_id

No Action

No Action

 

Immediate

Le champ ind_str_id correspond obligatoirement à une strate existante

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tr_strate_str (
 str_id SERIAL,
 str_code_num INTEGER NOT NULL,
 str_nom VARCHAR(50) NOT NULL,
 str_definition VARCHAR,
 CONSTRAINT c_uni_code_str UNIQUE(str_code_num),
 CONSTRAINT c_uni_nom_str UNIQUE(str_nom),
 CONSTRAINT tr_strate_str_pkey PRIMARY KEY(str_id)
) ;

COMMENT ON TABLE public.tr_strate_str
IS 'Tables strates permettant la classification des végétaux en fonction des hauteurs ';

COMMENT ON COLUMN public.tr_strate_str.str_id
IS 'Identifiant numérique automatique de la strate';

COMMENT ON COLUMN public.tr_strate_str.str_code_num
IS 'Code numérique défini par l''OFB pour les srates (1=herbacée ...)';

COMMENT ON COLUMN public.tr_strate_str.str_nom
IS 'Dénomination de la strate utilisée sur le terrain';

COMMENT ON COLUMN public.tr_strate_str.str_definition
IS 'Définition de la strate';

COMMENT ON CONSTRAINT c_uni_code_str ON public.tr_strate_str
IS 'Le champ str_code_num est unique (pas de doublons)';

COMMENT ON CONSTRAINT c_uni_nom_str ON public.tr_strate_str
IS 'Le champ str_nom est unique (pas de doublons)';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com)
Previous topic Chapter index Next topic