Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table stockage_graine
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
idlc_cond_stock_gr |
integer |
|
|
|
|
|
|
idlot_gr |
integer |
|
|
|
||||
|
idemplacement |
integer |
|
|
|
|
|
|
|
|
hauteur |
integer |
|
|
|
|
|
|
|
rangee |
integer |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
nb_conteneur_recu |
integer |
|
|
|
|
HVS il y a eu un pb a l enregistrement, point sur le nom de la colonne et non sur l enregistrement |
|
|
recup_emplacement |
varchar(50) |
|
|
|
|
|
|
|
recup_ch |
varchar(50) |
|
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idlc_cond_stock_gr |
id_lc |
No Action |
No Action |
|
Immediate |
|
||
idlot_gr |
idlot_gr |
No Action |
No Action |
|
Immediate |
|
||
idemplacement |
idemplacement |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table stockage_graine
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idlot_gr |
|
Triggers
There are no triggers for table stockage_graine
Rules
There are no rules for table stockage_graine
Policies
There are no policies for table stockage_graine
Referenced
There are no tables referenced by table stockage_graine
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
11443 |
Pages |
102 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.stockage_graine (
idlc_cond_stock_gr INTEGER,
idlot_gr INTEGER NOT NULL,
idemplacement INTEGER,
hauteur INTEGER,
rangee INTEGER,
commentaire TEXT,
nb_conteneur_recu INTEGER,
recup_emplacement VARCHAR(50),
recup_ch VARCHAR(50),
CONSTRAINT stockage_graine_pkey PRIMARY KEY(idlot_gr),
FOREIGN KEY (idlc_cond_stock_gr)
REFERENCES public.donnees_liste_classique(id_lc)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_stockage_graine FOREIGN KEY (idlot_gr)
REFERENCES public.graine(idlot_gr)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_stockage_graine_emplacement FOREIGN KEY (idemplacement)
REFERENCES public.emplacement(idemplacement)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON COLUMN public.stockage_graine.nb_conteneur_recu
IS 'HVS il y a eu un pb a l enregistrement, point sur le nom de la colonne et non sur l enregistrement';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |