Schema
public
Owner
phyto
Tablespace
(default)
Descriptions
Table des origines de définition des espèces (BDNFF, Fichier Mousse, Définition labo)
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
ori_id |
serial |
|
nextval('tr_origine_ori_ori_id_seq'::regclass) |
Identifiant automatique de l'origine |
|||
|
|
ori_libelle |
varchar(128) |
|
|
|
|
Libellé de l'origine |
|
|
ori_nom_court |
varchar(10) |
|
|
|
|
Nom court de la l'origine |
|
|
ori_commentaire |
varchar(255) |
|
|
|
|
Commentaire sur l'origine et notamment sur l'intégration en base de données |
Foreign Keys
There are no foreign keys for table tr_origine_ori
Check Constraints
There are no check constraints for table tr_origine_ori
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
ori_id |
|
Triggers
There are no triggers for table tr_origine_ori
Rules
There are no rules for table tr_origine_ori
Policies
There are no policies for table tr_origine_ori
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
public |
esp_ori_id |
ori_id |
No Action |
No Action |
|
Immediate |
Une espèce est obligatoirement rattachée à une origine (flore ...) |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
7 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tr_origine_ori (
ori_id SERIAL,
ori_libelle VARCHAR(128),
ori_nom_court VARCHAR(10),
ori_commentaire VARCHAR(255),
CONSTRAINT tr_origine_ori_pkey PRIMARY KEY(ori_id)
) ;
COMMENT ON TABLE public.tr_origine_ori
IS 'Table des origines de définition des espèces (BDNFF, Fichier Mousse, Définition labo)';
COMMENT ON COLUMN public.tr_origine_ori.ori_id
IS 'Identifiant automatique de l''origine';
COMMENT ON COLUMN public.tr_origine_ori.ori_libelle
IS 'Libellé de l''origine';
COMMENT ON COLUMN public.tr_origine_ori.ori_nom_court
IS 'Nom court de la l''origine';
COMMENT ON COLUMN public.tr_origine_ori.ori_commentaire
IS 'Commentaire sur l''origine et notamment sur l''intégration en base de données';
This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37 |