db_venik
Previous topic Chapter index Next topic

Table: croisement_geno

 

 

Schema

public

 

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

fk_croisement_geno_genotype

idgeno

public.genotype

idgeno

No Action

No Action

 

Immediate

 

fk_mode_croisement

idlc_mode_croisement

public.donnees_liste_classique

id_lc

No Action

No Action

 

Immediate

 

fk_plan_croisement

idlc_plan_croisement

public.donnees_liste_classique

id_lc

No Action

No Action

 

Immediate

 

fk_type_croisement

idlc_type_croisement

public.donnees_liste_classique

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

croisement_geno_pkey

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)
Previous topic Chapter index Next topic