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

Table: tr_famille_caracteristique_fca

 

 

Schema

public

 

Owner

postgres

 

Tablespace

(default)

 

Descriptions

Table contenant la liste des familles de caractéristique

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

fca_id

serial

 

nextval('tr_famille_caracteristique_fca_fca_id_seq'::regclass)

Identifiant automatique de la famille de caractéristique

 

fca_parent_id

integer

 

 

 

 

Identifiant automatique de la famille de caractéristique parent

 

 

fca_libelle

varchar(128)

 

 

 

Libellé de la famille de caractéristique

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

c_fk_fca_fca

fca_parent_id

public.tr_famille_caracteristique_fca

fca_id

No Action

No Action

 

Immediate

Une famille de caractéristique est associée à un et un seul parent. Les familles de tout premier ordre ne sont associées à aucune autre famille.

 

Check Constraints

There are no check constraints for table tr_famille_caracteristique_fca

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_parent_id_nom_fca

btree

 

fca_parent_id, fca_libelle

 

Unicité du couple nom / identifiant de la caractéristique parent

famille_caracteristique_fca_pkey

btree

 

fca_id

 

 

Triggers

There are no triggers for table tr_famille_caracteristique_fca

 

Rules

There are no rules for table tr_famille_caracteristique_fca

 

Policies

There are no policies for table tr_famille_caracteristique_fca

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tr_caracteristique_car

public

c_fk_fca_car

car_fca_id

public.tr_famille_caracteristique_fca

fca_id

No Action

No Action

 

Immediate

Une caractéristique est rattachée à une et une seule famille de caractéristique

tr_famille_caracteristique_fca

public

c_fk_fca_fca

fca_parent_id

public.tr_famille_caracteristique_fca

fca_id

No Action

No Action

 

Immediate

Une famille de caractéristique est associée à un et un seul parent. Les familles de tout premier ordre ne sont associées à aucune autre famille.

 

Properties

Property

Value

Inherited From

 

Rows

12

Pages

1

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tr_famille_caracteristique_fca (
 fca_id SERIAL,
 fca_parent_id INTEGER,
 fca_libelle VARCHAR(128) NOT NULL,
 CONSTRAINT famille_caracteristique_fca_pkey PRIMARY KEY(fca_id),
 CONSTRAINT c_fk_fca_fca FOREIGN KEY (fca_parent_id)
   REFERENCES public.tr_famille_caracteristique_fca(fca_id)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

)
WITH (oids = false);

COMMENT ON TABLE public.tr_famille_caracteristique_fca
IS 'Table contenant la liste des familles de caractéristique';

COMMENT ON COLUMN public.tr_famille_caracteristique_fca.fca_id
IS 'Identifiant automatique de la famille de caractéristique';

COMMENT ON COLUMN public.tr_famille_caracteristique_fca.fca_parent_id
IS 'Identifiant automatique de la famille de caractéristique parent';

COMMENT ON COLUMN public.tr_famille_caracteristique_fca.fca_libelle
IS 'Libellé de la famille de caractéristique';

COMMENT ON CONSTRAINT c_fk_fca_fca ON public.tr_famille_caracteristique_fca
IS 'Une famille de caractéristique est associée à un et un seul parent. Les familles de tout premier ordre ne sont associées à aucune autre famille.';

CREATE UNIQUE INDEX c_uni_parent_id_nom_fca ON public.tr_famille_caracteristique_fca
 USING btree (fca_parent_id, fca_libelle COLLATE pg_catalog."default");

COMMENT ON INDEX public.c_uni_parent_id_nom_fca
IS 'Unicité du couple nom / identifiant de la caractéristique parent';

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