db_venik
Previous topic Chapter index Next topic

Table: melange_geno

 

 

Schema

public

 

Owner

albenard

 

Tablespace

(default)

 

Descriptions

There is no description for table melange_geno

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

idgeno_du_melange

integer

 

 

 

 

idmelange_g

integer

 

 

 

 

 

Foreign Keys

Name

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

fk_melange_geno_genotype

idgeno_du_melange

public.genotype

idgeno

No Action

No Action

 

Immediate

 

fk_melange_geno_genotype2

idmelange_g

public.genotype

idgeno

No Action

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table melange_geno

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

pk_melange_geno

btree

 

idgeno_du_melange, idmelange_g

 

 

Triggers

There are no triggers for table melange_geno

 

Rules

There are no rules for table melange_geno

 

Policies

There are no policies for table melange_geno

 

Referenced

There are no tables referenced by table melange_geno

 

Properties

Property

Value

Inherited From

 

Rows

-1

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.melange_geno (
 idgeno_du_melange INTEGER NOT NULL,
 idmelange_g INTEGER NOT NULL,
 CONSTRAINT pk_melange_geno PRIMARY KEY(idgeno_du_melange, idmelange_g),
 CONSTRAINT fk_melange_geno_genotype FOREIGN KEY (idgeno_du_melange)
   REFERENCES public.genotype(idgeno)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT fk_melange_geno_genotype2 FOREIGN KEY (idmelange_g)
   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