Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table melange_graine
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
idlot_gr |
integer |
|
|
|
|
|||
idmelange |
integer |
|
|
|
|
|||
idsortie_gr |
integer |
|
|
|
|
|||
|
|
recup_ch_mel |
varchar(50) |
|
|
|
|
|
|
|
recup_ch_const |
varchar(50) |
|
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idlot_gr |
idlot_gr |
No Action |
No Action |
|
Immediate |
|
||
idmelange |
idlot_gr |
No Action |
No Action |
|
Immediate |
|
||
idlot_gr, idsortie_gr |
idlot_gr, idsortie_gr |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table melange_graine
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idlot_gr, idmelange, idsortie_gr |
|
Triggers
There are no triggers for table melange_graine
Rules
There are no rules for table melange_graine
Policies
There are no policies for table melange_graine
Referenced
There are no tables referenced by table melange_graine
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
678 |
Pages |
5 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.melange_graine (
idlot_gr INTEGER NOT NULL,
idmelange INTEGER NOT NULL,
idsortie_gr INTEGER NOT NULL,
recup_ch_mel VARCHAR(50),
recup_ch_const VARCHAR(50),
CONSTRAINT melange_graine_pkey PRIMARY KEY(idlot_gr, idmelange, idsortie_gr),
CONSTRAINT fk_melange_graine_graine FOREIGN KEY (idlot_gr)
REFERENCES public.graine(idlot_gr)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_melange_graine_graine1 FOREIGN KEY (idmelange)
REFERENCES public.graine(idlot_gr)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_melange_graine_sortie_graine FOREIGN KEY (idlot_gr, idsortie_gr)
REFERENCES public.sortie_graine(idlot_gr, idsortie_gr)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |