Schema
Owner
postgres
Tablespace
(default)
Descriptions
Table displaying the taxonomic family / Table listant les familles taxonomiques
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
txf_id |
serial |
|
nextval('tr_family_taxon_txf_txf_id_seq'::regclass) |
Automatic ID of the taxonomic family / Identifiant automatique de la famille taxonomique |
|||
|
|
txf_name |
varchar(255) |
|
|
Taxonomic family name / Nom de la famille taxonomique |
||
|
|
txf_codif_permanent |
varchar(15) |
|
|
|
|
Permanent ID of FishBase / Identifiant pérenne dans une référence officielle (Fishbase) |
Foreign Keys
There are no foreign keys for table tr_family_taxon_txf
Check Constraints
There are no check constraints for table tr_family_taxon_txf
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
txf_name |
|
txf_name must be unique /le champ txf_name ne peut contenir de doublons |
||
btree |
|
txf_id |
|
Triggers
There are no triggers for table tr_family_taxon_txf
Rules
There are no rules for table tr_family_taxon_txf
Policies
There are no policies for table tr_family_taxon_txf
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
gen_txf_id |
txf_id |
No Action |
No Action |
|
Immediate |
A genus is related to only one taxonomic family / Un genre taxonomique est associé à une et une seule famille taxonomique |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tr_family_taxon_txf (
txf_id SERIAL,
txf_name VARCHAR(255) NOT NULL,
txf_codif_permanent VARCHAR(15),
CONSTRAINT c_uni_name_txf UNIQUE(txf_name),
CONSTRAINT tr_family_taxon_txf_pkey PRIMARY KEY(txf_id)
)
WITH (oids = false);
COMMENT ON TABLE public.tr_family_taxon_txf
IS 'Table displaying the taxonomic family / Table listant les familles taxonomiques';
COMMENT ON COLUMN public.tr_family_taxon_txf.txf_id
IS 'Automatic ID of the taxonomic family / Identifiant automatique de la famille taxonomique';
COMMENT ON COLUMN public.tr_family_taxon_txf.txf_name
IS 'Taxonomic family name / Nom de la famille taxonomique';
COMMENT ON COLUMN public.tr_family_taxon_txf.txf_codif_permanent
IS ' Permanent ID of FishBase / Identifiant pérenne dans une référence officielle (Fishbase)';
COMMENT ON CONSTRAINT c_uni_name_txf ON public.tr_family_taxon_txf
IS 'txf_name must be unique /le champ txf_name ne peut contenir de doublons';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 19/06/2019 10:17 |