Schema
Owner
postgres
Tablespace
(default)
Descriptions
Table of trait groups / Table des groupes de traits
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
grp_id |
serial |
|
nextval('t_group_trait_grp_grp_id_seq'::regclass) |
Automatic ID of the trait group / Identifiant automatique du groupe de traits |
|||
|
|
grp_definition |
varchar(64) |
|
|
Trait group definition / Définition liée au groupe de traits |
||
|
|
grp_author |
varchar(64) |
|
|
|
Trait group author / Auteur ayant créé le groupe de traits |
Foreign Keys
There are no foreign keys for table t_group_trait_grp
Check Constraints
There are no check constraints for table t_group_trait_grp
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
grp_definition |
|
grp_definition must be unique / le champ grp_definition ne peut contenir de doublons |
||
btree |
|
grp_id |
|
Triggers
There are no triggers for table t_group_trait_grp
Rules
There are no rules for table t_group_trait_grp
Policies
There are no policies for table t_group_trait_grp
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
ctg_grp_id |
grp_id |
No Action |
No Action |
|
Immediate |
Connection involves only one trait group / L'association concerne un et un seul groupe de traits |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.t_group_trait_grp (
grp_id SERIAL,
grp_definition VARCHAR(64) NOT NULL,
grp_author VARCHAR(64) NOT NULL,
CONSTRAINT c_uni_definition_grp UNIQUE(grp_definition),
CONSTRAINT t_group_trait_grp_pkey PRIMARY KEY(grp_id)
)
WITH (oids = false);
COMMENT ON TABLE public.t_group_trait_grp
IS 'Table of trait groups / Table des groupes de traits ';
COMMENT ON COLUMN public.t_group_trait_grp.grp_id
IS 'Automatic ID of the trait group / Identifiant automatique du groupe de traits';
COMMENT ON COLUMN public.t_group_trait_grp.grp_definition
IS 'Trait group definition / Définition liée au groupe de traits';
COMMENT ON COLUMN public.t_group_trait_grp.grp_author
IS 'Trait group author / Auteur ayant créé le groupe de traits';
COMMENT ON CONSTRAINT c_uni_definition_grp ON public.t_group_trait_grp
IS 'grp_definition must be unique / le champ grp_definition ne peut contenir de doublons';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 19/06/2019 10:17 |