Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table croisement_geno
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
idlc_plan_croisement |
integer |
|
|
|
|
|
|
|
idlc_type_croisement |
integer |
|
|
|
|
|
|
idgeno |
integer |
|
|
|
||||
|
idlc_mode_croisement |
integer |
|
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
recup_code_plan |
varchar(50) |
|
|
|
|
|
|
|
recup_code_type |
varchar(50) |
|
|
|
|
|
|
|
recup_code_mode |
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 |
|
||
idlc_mode_croisement |
id_lc |
No Action |
No Action |
|
Immediate |
|
||
idlc_plan_croisement |
id_lc |
No Action |
No Action |
|
Immediate |
|
||
idlc_type_croisement |
id_lc |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table croisement_geno
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idgeno |
|
Triggers
There are no triggers for table croisement_geno
Rules
There are no rules for table croisement_geno
Policies
There are no policies for table croisement_geno
Referenced
There are no tables referenced by table croisement_geno
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
7965 |
Pages |
81 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.croisement_geno (
idlc_plan_croisement INTEGER,
idlc_type_croisement INTEGER,
idgeno INTEGER NOT NULL,
idlc_mode_croisement INTEGER,
commentaire TEXT,
recup_code_plan VARCHAR(50),
recup_code_type VARCHAR(50),
recup_code_mode VARCHAR(50),
recup_nom_geno VARCHAR(50),
CONSTRAINT croisement_geno_pkey PRIMARY KEY(idgeno),
CONSTRAINT fk_croisement_geno_genotype FOREIGN KEY (idgeno)
REFERENCES public.genotype(idgeno)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_mode_croisement FOREIGN KEY (idlc_mode_croisement)
REFERENCES public.donnees_liste_classique(id_lc)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_plan_croisement FOREIGN KEY (idlc_plan_croisement)
REFERENCES public.donnees_liste_classique(id_lc)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_type_croisement FOREIGN KEY (idlc_type_croisement)
REFERENCES public.donnees_liste_classique(id_lc)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |