db_venik
Previous topic Chapter index Next topic

Table: peuplement_lieu

 

 

Schema

public

 

Owner

albenard

 

Tablespace

(default)

 

Descriptions

There is no description for table peuplement_lieu

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

idlc_structure_peup

integer

 

 

 

 

 

idlieu

integer

 

 

 

 

 

annee

integer

 

 

 

 

2 juin 2008. non obligatoire dans la base. A rendre obligatoire dans l application

 

 

mois

integer

 

 

 

 

 

 

 

surface

numeric

 

 

 

 

 

 

 

seed_zone

text

 

 

 

 

 

 

 

commentaire

text

 

 

 

 

 

 

 

recup_nom_lieu

varchar(80)

 

 

 

 

 

 

Foreign Keys

Name

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

$1

idlieu

public.lieu

idlieu

No Action

No Action

 

Immediate

 

fk_structure_peuplement

idlc_structure_peup

public.donnees_liste_classique

id_lc

No Action

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table peuplement_lieu

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

pk_peuplement_lieu

btree

 

idlieu

 

 

Triggers

There are no triggers for table peuplement_lieu

 

Rules

There are no rules for table peuplement_lieu

 

Policies

There are no policies for table peuplement_lieu

 

Referenced

There are no tables referenced by table peuplement_lieu

 

Properties

Property

Value

Inherited From

 

Rows

2465

Pages

15

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.peuplement_lieu (
 idlc_structure_peup INTEGER,
 idlieu INTEGER NOT NULL,
 annee INTEGER,
 mois INTEGER,
 surface NUMERIC,
 seed_zone TEXT,
 commentaire TEXT,
 recup_nom_lieu VARCHAR(80),
 CONSTRAINT pk_peuplement_lieu PRIMARY KEY(idlieu),
 FOREIGN KEY (idlieu)
   REFERENCES public.lieu(idlieu)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT fk_structure_peuplement FOREIGN KEY (idlc_structure_peup)
   REFERENCES public.donnees_liste_classique(id_lc)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON COLUMN public.peuplement_lieu.annee
IS '2 juin 2008. non obligatoire dans la base. A rendre obligatoire dans l application';

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