db_venik
Previous topic Chapter index Next topic

Table: clone_geno

 

 

Schema

public

 

Owner

albenard

 

Tablespace

(default)

 

Descriptions

There is no description for table clone_geno

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

idgeno

integer

 

 

 

 

 

sexe

varchar(30)

 

 

 

 

 

 

 

multiplication

varchar(15)

 

 

 

 

 

 

 

existence_clone

varchar(15)

 

 

 

 

 

 

 

commentaire

text

 

 

 

 

 

 

 

recup_nom_geno

varchar(50)

 

 

 

 

 

 

Foreign Keys

Name

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

fk_clone_geno_genotype

idgeno

public.genotype

idgeno

No Action

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table clone_geno

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

clone_geno_pkey

btree

 

idgeno

 

 

Triggers

There are no triggers for table clone_geno

 

Rules

There are no rules for table clone_geno

 

Policies

There are no policies for table clone_geno

 

Referenced

Table

Schema

Foreign Key

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

position_ortet_peup_dispo_geno

public

$1

idgeno

public.clone_geno

idgeno

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

12874

Pages

139

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.clone_geno (
 idgeno INTEGER NOT NULL,
 sexe VARCHAR(30),
 multiplication VARCHAR(15),
 existence_clone VARCHAR(15),
 commentaire TEXT,
 recup_nom_geno VARCHAR(50),
 CONSTRAINT clone_geno_pkey PRIMARY KEY(idgeno),
 CONSTRAINT fk_clone_geno_genotype FOREIGN KEY (idgeno)
   REFERENCES public.genotype(idgeno)
   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