db_venik
Previous topic Chapter index Next topic

Table: travaux_lieu

 

 

Schema

public

 

Owner

albenard

 

Tablespace

(default)

 

Descriptions

There is no description for table travaux_lieu

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

idlieu

integer

 

 

 

 

 

idlc_travail

integer

 

 

 

 

 

 

annee

integer

 

 

 

 

2 juin 2008. non obligatoire dans la base. Inciter a son usage dans application.

 

 

mois

integer

 

 

 

 

 

 

 

produit_dose

varchar(128)

 

 

 

 

 

 

 

duree

integer

 

 

 

 

 

 

 

participants

text

 

 

 

 

 

 

 

commentaire

text

 

 

 

 

 

 

 

recup_nom_lieu

varchar(50)

 

 

 

 

 

 

 

num_travaux

integer

 

 

 

avril 2008. copie de idtravaux puis not null. num par lieu : de 1 a n

 

idtravaux

serial

 

nextval('public.travaux_lieu_idtravaux_seq'::text::regclass)

 

 

Foreign Keys

Name

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

fk_tavail

idlc_travail

public.donnees_liste_classique

id_lc

No Action

No Action

 

Immediate

 

fk_travaux_lieu_lieu

idlieu

public.lieu

idlieu

No Action

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table travaux_lieu

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

pk_idtravaux

btree

 

idtravaux

 

u_lieu_num_travaux

btree

 

idlieu, num_travaux

 

 

 

Triggers

There are no triggers for table travaux_lieu

 

Rules

There are no rules for table travaux_lieu

 

Policies

There are no policies for table travaux_lieu

 

Referenced

There are no tables referenced by table travaux_lieu

 

Properties

Property

Value

Inherited From

 

Rows

913

Pages

11

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.travaux_lieu (
 idlieu INTEGER NOT NULL,
 idlc_travail INTEGER NOT NULL,
 annee INTEGER,
 mois INTEGER,
 produit_dose VARCHAR(128),
 duree INTEGER,
 participants TEXT,
 commentaire TEXT,
 recup_nom_lieu VARCHAR(50),
 num_travaux INTEGER NOT NULL,
 idtravaux SERIAL,
 CONSTRAINT pk_idtravaux PRIMARY KEY(idtravaux),
 CONSTRAINT u_lieu_num_travaux UNIQUE(idlieu, num_travaux),
 CONSTRAINT fk_tavail FOREIGN KEY (idlc_travail)
   REFERENCES public.donnees_liste_classique(id_lc)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT fk_travaux_lieu_lieu FOREIGN KEY (idlieu)
   REFERENCES public.lieu(idlieu)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON COLUMN public.travaux_lieu.annee
IS '2 juin 2008. non obligatoire dans la base. Inciter a son usage dans application.';

COMMENT ON COLUMN public.travaux_lieu.num_travaux
IS 'avril 2008. copie de idtravaux puis not null. num par lieu : de 1 a n';

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