Schema
Owner
cefs
Tablespace
(default)
Descriptions
Entité représentant les sites de capture des animaux
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
sit_id |
serial |
|
nextval('tr_site_capture_sit_sit_id_seq'::regclass) |
Identifiant automatique du site |
|||
|
|
sit_nom_court |
char(20) |
|
|
Nom court représentant le site de capture |
||
|
|
sit_description |
char(128) |
|
|
|
|
Descriptif plus détaillé du site de capture |
Foreign Keys
There are no foreign keys for table tr_site_capture_sit
Check Constraints
There are no check constraints for table tr_site_capture_sit
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
sit_nom_court |
|
|
||
btree |
|
sit_id |
|
Triggers
There are no triggers for table tr_site_capture_sit
Rules
There are no rules for table tr_site_capture_sit
Policies
There are no policies for table tr_site_capture_sit
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
cap_sit_id |
sit_id |
No Action |
No Action |
|
Immediate |
Rattachement d'une capture à un et un seul site de capture |
||||
den_sit_id |
sit_id |
Cascade |
No Action |
|
Immediate |
Association d'un enregistrement de la table des densités de poppulation avec un et un seul site. |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
15 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tr_site_capture_sit (
sit_id SERIAL,
sit_nom_court CHAR(20) NOT NULL,
sit_description CHAR(128),
CONSTRAINT c_uni_sit_nom_court UNIQUE(sit_nom_court),
CONSTRAINT site_capture_sit_pkey PRIMARY KEY(sit_id)
)
WITH (oids = false);
COMMENT ON TABLE public.tr_site_capture_sit
IS 'Entité représentant les sites de capture des animaux';
COMMENT ON COLUMN public.tr_site_capture_sit.sit_id
IS 'Identifiant automatique du site';
COMMENT ON COLUMN public.tr_site_capture_sit.sit_nom_court
IS 'Nom court représentant le site de capture';
COMMENT ON COLUMN public.tr_site_capture_sit.sit_description
IS 'Descriptif plus détaillé du site de capture';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |