db_venik
Previous topic Chapter index Next topic

Table: sortie_graine

 

 

Schema

public

 

Owner

albenard

 

Tablespace

(default)

 

Descriptions

HVS. Une sortie va sur un groupe de dispos ou sur un autre lieu. Type_lieu et nom_lieu sont donc inutiles.

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

idlot_gr

integer

 

 

 

 

 

idsortie_gr

integer

 

 

 

 

 

 

annee

integer

 

 

 

 

 

 

mois

integer

 

 

 

 

 

 

 

destinataire

varchar(128)

 

 

 

 

 

 

 

qte_sortie

numeric

 

 

 

 

 

 

 

qte_restante

numeric

 

 

 

 

 

 

 

commentaire

text

 

 

 

 

 

 

 

conteneurs_sortis

integer

 

 

 

 

 

 

 

conteneurs_restants

integer

 

 

 

 

 

 

 

teneur_eau

integer

 

 

 

 

 

 

 

faculte_germinative

integer

 

 

 

 

 

 

 

recup_ch

varchar(50)

 

 

 

 

 

 

 

recup_type_lieu

varchar(50)

 

 

 

 

 

 

 

recup_nom_lieu

varchar(50)

 

 

 

 

 

 

idgroupe_dispo

integer

 

 

 

 

 

 

 

recup_groupe_dispo

varchar(50)

 

 

 

 

 

 

 

autre_lieu

varchar(128)

 

 

 

 

 

 

Foreign Keys

Name

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

$1

idgroupe_dispo

public.groupe_dispositif_lieu

idgroupe_dispo

No Action

No Action

 

Immediate

 

fk_sortie_graine_graine

idlot_gr

public.graine

idlot_gr

No Action

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table sortie_graine

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

sortie_graine_pkey

btree

 

idlot_gr, idsortie_gr

 

 

Triggers

There are no triggers for table sortie_graine

 

Rules

There are no rules for table sortie_graine

 

Policies

There are no policies for table sortie_graine

 

Referenced

Table

Schema

Foreign Key

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

melange_graine

public

fk_melange_graine_sortie_graine

idlot_gr, idsortie_gr

public.sortie_graine

idlot_gr, idsortie_gr

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

16466

Pages

195

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.sortie_graine (
 idlot_gr INTEGER NOT NULL,
 idsortie_gr INTEGER NOT NULL,
 annee INTEGER NOT NULL,
 mois INTEGER,
 destinataire VARCHAR(128),
 qte_sortie NUMERIC,
 qte_restante NUMERIC,
 commentaire TEXT,
 conteneurs_sortis INTEGER,
 conteneurs_restants INTEGER,
 teneur_eau INTEGER,
 faculte_germinative INTEGER,
 recup_ch VARCHAR(50),
 recup_type_lieu VARCHAR(50),
 recup_nom_lieu VARCHAR(50),
 idgroupe_dispo INTEGER,
 recup_groupe_dispo VARCHAR(50),
 autre_lieu VARCHAR(128),
 CONSTRAINT sortie_graine_pkey PRIMARY KEY(idlot_gr, idsortie_gr),
 FOREIGN KEY (idgroupe_dispo)
   REFERENCES public.groupe_dispositif_lieu(idgroupe_dispo)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT fk_sortie_graine_graine FOREIGN KEY (idlot_gr)
   REFERENCES public.graine(idlot_gr)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.sortie_graine
IS 'HVS. Une sortie va sur un groupe de dispos ou sur un autre lieu. Type_lieu et nom_lieu sont donc inutiles.';

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