Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table reception_pollen
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
idlot_pollen |
integer |
|
|
|
||||
|
|
annee |
integer |
|
|
|
|
|
|
|
mois |
integer |
|
|
|
|
|
|
|
qte_recue |
numeric |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
recup_pollen |
varchar(50) |
|
|
|
|
|
|
|
exterieur |
varchar(10) |
|
|
|
|
28-6-07. Oui : reception seulement, pas d extraction. Non : recolte sur place suivie d une extraction |
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idlot_pollen |
idlot_pollen |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table reception_pollen
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idlot_pollen |
|
Triggers
There are no triggers for table reception_pollen
Rules
There are no rules for table reception_pollen
Policies
There are no policies for table reception_pollen
Referenced
There are no tables referenced by table reception_pollen
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
2355 |
Pages |
18 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.reception_pollen (
idlot_pollen INTEGER NOT NULL,
annee INTEGER,
mois INTEGER,
qte_recue NUMERIC,
commentaire TEXT,
recup_pollen VARCHAR(50),
exterieur VARCHAR(10),
CONSTRAINT reception_pollen_pkey PRIMARY KEY(idlot_pollen),
CONSTRAINT fk_reception_pollen FOREIGN KEY (idlot_pollen)
REFERENCES public.pollen(idlot_pollen)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON COLUMN public.reception_pollen.exterieur
IS '28-6-07. Oui : reception seulement, pas d extraction. Non : recolte sur place suivie d une extraction ';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |