Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table emplacement
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
idemplacement |
serial |
|
nextval('emplacement_idemplacement_seq'::regclass) |
|
|||
|
|
intitule_long |
varchar(70) |
|
|
|
||
|
|
intitule_court |
varchar(20) |
|
|
|
||
|
|
num_salle |
varchar(20) |
|
|
|
|
|
|
|
temperature |
numeric |
|
|
|
|
|
|
|
intitule_anglais |
varchar(50) |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
date_creation |
date |
|
|
|
|
|
|
|
date_maj |
date |
|
|
|
|
|
|
|
gr_pol |
varchar(2) |
|
|
|
|
mai 2009. valeur G ou P pour (graine ou pollen) |
Foreign Keys
There are no foreign keys for table emplacement
Check Constraints
There are no check constraints for table emplacement
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
intitule_court |
|
|
||
btree |
|
intitule_long |
|
|
||
btree |
|
idemplacement |
|
Triggers
There are no triggers for table emplacement
Rules
There are no rules for table emplacement
Policies
There are no policies for table emplacement
Referenced
Table | Schema | Foreign Key | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
idemplacement |
idemplacement |
No Action |
No Action |
|
Immediate |
|
||||
idemplacement |
idemplacement |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
16 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.emplacement (
idemplacement SERIAL,
intitule_long VARCHAR(70) NOT NULL,
intitule_court VARCHAR(20) NOT NULL,
num_salle VARCHAR(20),
temperature NUMERIC,
intitule_anglais VARCHAR(50),
commentaire TEXT,
date_creation DATE,
date_maj DATE,
gr_pol VARCHAR(2),
CONSTRAINT emplacement_intitule_court_key UNIQUE(intitule_court),
CONSTRAINT emplacement_intitule_long_key UNIQUE(intitule_long),
CONSTRAINT pk_emplacement PRIMARY KEY(idemplacement)
) ;
COMMENT ON COLUMN public.emplacement.gr_pol
IS 'mai 2009. valeur G ou P pour (graine ou pollen)';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |