db_venik
Previous topic Chapter index Next topic

Table: relation_groupe_geno

 

 

Schema

public

 

Owner

albenard

 

Tablespace

(default)

 

Descriptions

There is no description for table relation_groupe_geno

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

idgroupe_geno

integer

 

 

 

 

idgeno

integer

 

 

 

 

 

Foreign Keys

Name

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

fk_relation_groupe_geno_genotype

idgeno

public.genotype

idgeno

No Action

No Action

 

Immediate

 

fk_relation_groupe_geno_groupe_g

idgroupe_geno

public.groupe_geno

idgroupe_geno

No Action

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table relation_groupe_geno

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

pk_relation_groupe_geno

btree

 

idgroupe_geno, idgeno

 

 

Triggers

There are no triggers for table relation_groupe_geno

 

Rules

There are no rules for table relation_groupe_geno

 

Policies

There are no policies for table relation_groupe_geno

 

Referenced

There are no tables referenced by table relation_groupe_geno

 

Properties

Property

Value

Inherited From

 

Rows

60

Pages

1

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.relation_groupe_geno (
 idgroupe_geno INTEGER NOT NULL,
 idgeno INTEGER NOT NULL,
 CONSTRAINT pk_relation_groupe_geno PRIMARY KEY(idgroupe_geno, idgeno),
 CONSTRAINT fk_relation_groupe_geno_genotype FOREIGN KEY (idgeno)
   REFERENCES public.genotype(idgeno)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT fk_relation_groupe_geno_groupe_g FOREIGN KEY (idgroupe_geno)
   REFERENCES public.groupe_geno(idgroupe_geno)
   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