Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table geno_lieu
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
idlieu |
integer |
|
|
|
|
|||
idgeno |
integer |
|
|
|
|
|||
|
|
effectif_ini_en_dispo |
integer |
|
|
|
|
|
|
|
effectif_ini_hors_dispo |
integer |
|
|
|
|
|
|
|
effectif_actuel_en_dispo |
integer |
|
|
|
|
|
|
|
effectif_actuel_hors_dispo |
integer |
|
|
|
|
|
|
|
annee_comptage |
integer |
|
|
|
|
|
|
|
recup_nom_lieu |
varchar(50) |
|
|
|
|
|
|
|
recup_nom_geno |
varchar(50) |
|
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idgeno |
idgeno |
No Action |
No Action |
|
Immediate |
|
||
idlieu |
idlieu |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table geno_lieu
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idlieu, idgeno |
|
Triggers
There are no triggers for table geno_lieu
Rules
There are no rules for table geno_lieu
Policies
There are no policies for table geno_lieu
Referenced
There are no tables referenced by table geno_lieu
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
11919 |
Pages |
116 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.geno_lieu (
idlieu INTEGER NOT NULL,
idgeno INTEGER NOT NULL,
effectif_ini_en_dispo INTEGER,
effectif_ini_hors_dispo INTEGER,
effectif_actuel_en_dispo INTEGER,
effectif_actuel_hors_dispo INTEGER,
annee_comptage INTEGER,
recup_nom_lieu VARCHAR(50),
recup_nom_geno VARCHAR(50),
CONSTRAINT geno_lieu_pkey PRIMARY KEY(idlieu, idgeno),
CONSTRAINT fk_geno_lieu_genotype FOREIGN KEY (idgeno)
REFERENCES public.genotype(idgeno)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_geno_lieu_lieu FOREIGN KEY (idlieu)
REFERENCES public.lieu(idlieu)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |