Schema
Owner
albenard
Tablespace
(default)
Descriptions
HVS: les champs relatifs a la conservation du pollen on ete recopies dans la table conserv_pollen.
Les champs correspondant de la table recolte_pollen ne doivent plus etre utilises
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
idlot_pollen |
integer |
|
|
|
||||
|
|
annee |
integer |
|
|
|
|
|
|
|
mois |
integer |
|
|
|
|
|
|
|
age_recolte |
integer |
|
|
|
|
|
|
|
nb_ramet |
integer |
|
|
|
|
|
|
|
distance_arbre |
integer |
|
|
|
|
|
|
|
machine_electro |
varchar(10) |
|
|
|
|
|
|
|
annee_extraction |
integer |
|
|
|
|
|
|
|
mois_extraction |
integer |
|
|
|
|
|
|
|
qte_extraite |
numeric |
|
|
|
|
|
|
|
annee_conservation |
integer |
|
|
|
|
|
|
|
mois_conservation |
integer |
|
|
|
|
|
|
|
teneur_eau |
numeric |
|
|
|
|
|
|
|
faculte_germinative |
numeric |
|
|
|
|
|
|
|
conductivite |
numeric |
|
|
|
|
|
|
|
respiration |
numeric |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
recup_pollen |
varchar(50) |
|
|
|
|
|
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 recolte_pollen
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idlot_pollen |
|
Triggers
There are no triggers for table recolte_pollen
Rules
There are no rules for table recolte_pollen
Policies
There are no policies for table recolte_pollen
Referenced
There are no tables referenced by table recolte_pollen
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
2486 |
Pages |
23 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.recolte_pollen (
idlot_pollen INTEGER NOT NULL,
annee INTEGER NOT NULL,
mois INTEGER,
age_recolte INTEGER,
nb_ramet INTEGER,
distance_arbre INTEGER,
machine_electro VARCHAR(10),
annee_extraction INTEGER,
mois_extraction INTEGER,
qte_extraite NUMERIC,
annee_conservation INTEGER,
mois_conservation INTEGER,
teneur_eau NUMERIC,
faculte_germinative NUMERIC,
conductivite NUMERIC,
respiration NUMERIC,
commentaire TEXT,
recup_pollen VARCHAR(50),
CONSTRAINT recolte_pollen_pkey PRIMARY KEY(idlot_pollen),
CONSTRAINT fk_recolte_pollen FOREIGN KEY (idlot_pollen)
REFERENCES public.pollen(idlot_pollen)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON TABLE public.recolte_pollen
IS 'HVS: les champs relatifs a la conservation du pollen on ete recopies dans la table conserv_pollen.
Les champs correspondant de la table recolte_pollen ne doivent plus etre utilises';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |