Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table synonyme_geno
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
idsynonyme |
serial |
|
nextval('synonyme_geno_idsynonyme_seq'::regclass) |
|
|||
|
idgeno |
integer |
|
|
|
|
||
|
|
nom |
varchar(128) |
|
|
|
||
|
|
commentaire |
text |
|
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idgeno |
idgeno |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table synonyme_geno
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idsynonyme |
|
|||
btree |
|
nom |
|
|
Triggers
There are no triggers for table synonyme_geno
Rules
There are no rules for table synonyme_geno
Policies
There are no policies for table synonyme_geno
Referenced
There are no tables referenced by table synonyme_geno
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
-1 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.synonyme_geno (
idsynonyme SERIAL,
idgeno INTEGER NOT NULL,
nom VARCHAR(128) NOT NULL,
commentaire TEXT,
CONSTRAINT pk_synonyme_geno PRIMARY KEY(idsynonyme),
CONSTRAINT synonyme_geno_nom_key UNIQUE(nom),
CONSTRAINT fk_synonyme_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) |