pggeodb.nancy.inra.fr/db_toff - db_toff on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Table: tr_famille_taxon_txf

 

 

Schema

public

 

Owner

postgres

 

Tablespace

(default)

 

Descriptions

Table listant les familles taxonomiques

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

txf_id

serial

 

nextval('tr_famille_taxon_txf_txf_id_seq'::regclass)

Identifiant automatique de la famille taxonomique

 

 

txf_nom

varchar(255)

 

 

Nom de la famille taxonomique

 

 

txf_codif_perenne

varchar(15)

 

 

 

 

Identifiant pérenne dans une référence officielle (Fishbase)

 

Foreign Keys

There are no foreign keys for table tr_famille_taxon_txf

 

Check Constraints

There are no check constraints for table tr_famille_taxon_txf

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_nom_txf

btree

 

txf_nom

 

le champ txf_nom ne peut contenir de doublons

tr_famille_taxon_txf_pkey

btree

 

txf_id

 

 

Triggers

There are no triggers for table tr_famille_taxon_txf

 

Rules

There are no rules for table tr_famille_taxon_txf

 

Policies

There are no policies for table tr_famille_taxon_txf

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tr_genre_gen

public

c_fk_txf_gen

gen_txf_id

public.tr_famille_taxon_txf

txf_id

No Action

No Action

 

Immediate

Un genre taxonomique est associé à une et une seule famille taxonomique

 

Properties

Property

Value

Inherited From

 

Rows

549

Pages

4

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tr_famille_taxon_txf (
 txf_id SERIAL,
 txf_nom VARCHAR(255) NOT NULL,
 txf_codif_perenne VARCHAR(15),
 CONSTRAINT c_uni_nom_txf UNIQUE(txf_nom),
 CONSTRAINT tr_famille_taxon_txf_pkey PRIMARY KEY(txf_id)
)
WITH (oids = false);

COMMENT ON TABLE public.tr_famille_taxon_txf
IS 'Table listant les familles taxonomiques';

COMMENT ON COLUMN public.tr_famille_taxon_txf.txf_id
IS 'Identifiant automatique de la famille taxonomique';

COMMENT ON COLUMN public.tr_famille_taxon_txf.txf_nom
IS 'Nom de la famille taxonomique';

COMMENT ON COLUMN public.tr_famille_taxon_txf.txf_codif_perenne
IS 'Identifiant pérenne dans une référence officielle (Fishbase)';

COMMENT ON CONSTRAINT c_uni_nom_txf ON public.tr_famille_taxon_txf
IS 'le champ txf_nom ne peut contenir de doublons';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23
Previous topic Chapter index Next topic