Schema
public
Owner
phyto
Tablespace
(default)
Descriptions
Table des singularités associables à un coeeficient d'abondance (par exemple pour préciser que l'espèce est observée en bordure de chemin ou sur une souche ...)
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
sin_id |
serial |
|
nextval('tr_singularite_sin_sin_id_seq'::regclass) |
Identifiant automatique de la singularité |
|||
|
|
sin_abrege |
varchar(5) |
|
|
Abrégé de la singularité tel que figurant sur les relevés |
||
|
|
sin_definition |
varchar(255) |
|
|
|
Définition de la singularité |
Foreign Keys
There are no foreign keys for table tr_singularite_sin
Check Constraints
There are no check constraints for table tr_singularite_sin
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
sin_id |
|
|||
btree |
|
sin_abrege |
|
Unicité de l'abrégé d'une singularité |
Triggers
There are no triggers for table tr_singularite_sin
Rules
There are no rules for table tr_singularite_sin
Policies
There are no policies for table tr_singularite_sin
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
public |
abo_sin_id |
sin_id |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
40 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tr_singularite_sin (
sin_id SERIAL,
sin_abrege VARCHAR(5) NOT NULL,
sin_definition VARCHAR(255) NOT NULL,
CONSTRAINT tr_singularite_sin_pkey PRIMARY KEY(sin_id),
CONSTRAINT tr_singularite_sin_sin_abrege_key UNIQUE(sin_abrege)
) ;
COMMENT ON TABLE public.tr_singularite_sin
IS 'Table des singularités associables à un coeeficient d''abondance (par exemple pour préciser que l''espèce est observée en bordure de chemin ou sur une souche ...)';
COMMENT ON COLUMN public.tr_singularite_sin.sin_id
IS 'Identifiant automatique de la singularité';
COMMENT ON COLUMN public.tr_singularite_sin.sin_abrege
IS 'Abrégé de la singularité tel que figurant sur les relevés';
COMMENT ON COLUMN public.tr_singularite_sin.sin_definition
IS 'Définition de la singularité';
COMMENT ON CONSTRAINT tr_singularite_sin_sin_abrege_key ON public.tr_singularite_sin
IS 'Unicité de l''abrégé d''une singularité';
This file was generated with SQL Manager 2011 for PostgreSQL (www.pgsqlmanager.com) at 28/03/2012 14:37 |