Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table sortie_pollen
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
idlot_pollen |
integer |
|
|
|
|
|||
|
idsortie_p |
integer |
|
|
|
|
||
|
idlieu_dest_p |
integer |
|
|
|
|
|
|
|
|
annee |
integer |
|
|
|
|
|
|
|
mois |
integer |
|
|
|
|
|
|
|
destinataire |
varchar(128) |
|
|
|
|
|
|
|
qte_sortie |
numeric |
|
|
|
|
|
|
|
qte_restante |
numeric |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
sortie_frais |
boolean |
|
|
|
|
|
|
|
faculte_germinative |
numeric |
|
|
|
|
|
|
|
teneur_eau |
numeric |
|
|
|
|
|
|
|
recup_pollen |
varchar(50) |
|
|
|
|
|
|
|
num_sortie_p |
numeric |
|
|
|
19-09-2007. numero modifiable de la sortie. a ete recopie de idsortie_p. |
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idlieu_dest_p |
idlieu |
No Action |
No Action |
|
Immediate |
|
||
idlot_pollen |
idlot_pollen |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table sortie_pollen
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idlot_pollen, num_sortie_p |
|
|
||
btree |
|
idlot_pollen, idsortie_p |
|
Triggers
There are no triggers for table sortie_pollen
Rules
There are no rules for table sortie_pollen
Policies
There are no policies for table sortie_pollen
Referenced
Table | Schema | Foreign Key | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
idlot_pollen, idsortie_p |
idlot_pollen, idsortie_p |
No Action |
No Action |
|
Immediate |
|
||||
idlot_pollen, idsortie_p |
idlot_pollen, idsortie_p |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
2498 |
Pages |
34 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.sortie_pollen (
idlot_pollen INTEGER NOT NULL,
idsortie_p INTEGER NOT NULL,
idlieu_dest_p INTEGER,
annee INTEGER,
mois INTEGER,
destinataire VARCHAR(128),
qte_sortie NUMERIC,
qte_restante NUMERIC,
commentaire TEXT,
sortie_frais BOOLEAN,
faculte_germinative NUMERIC,
teneur_eau NUMERIC,
recup_pollen VARCHAR(50),
num_sortie_p NUMERIC NOT NULL,
CONSTRAINT sortie_pollen_idlot_pollen_key UNIQUE(idlot_pollen, num_sortie_p),
CONSTRAINT sortie_pollen_pkey PRIMARY KEY(idlot_pollen, idsortie_p),
CONSTRAINT fk_lieu_dest_p FOREIGN KEY (idlieu_dest_p)
REFERENCES public.lieu(idlieu)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_sortie_pollen_pollen FOREIGN KEY (idlot_pollen)
REFERENCES public.pollen(idlot_pollen)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON COLUMN public.sortie_pollen.num_sortie_p
IS '19-09-2007. numero modifiable de la sortie. a ete recopie de idsortie_p.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |