Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table recolte_graine
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
idlot_gr |
integer |
|
|
|
||||
|
|
annee |
integer |
|
|
|
|
|
|
|
mois |
integer |
|
|
|
|
|
|
|
age_recolte |
integer |
|
|
|
|
|
|
|
nb_arbre |
integer |
|
|
|
|
|
|
|
nb_cone |
numeric |
|
|
|
|
|
|
|
densite |
numeric |
|
|
|
|
|
|
|
distance |
numeric |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
recup_ch |
varchar(50) |
|
|
|
|
|
|
|
eclaircie |
boolean |
|
|
|
|
|
|
|
induction_florale |
boolean |
|
|
|
|
|
|
|
sup_pollinique |
boolean |
|
|
|
|
|
|
|
nb_sacs |
integer |
|
|
|
|
Ajout à la place de autre_cru_geno |
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idlot_gr |
idlot_gr |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table recolte_graine
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idlot_gr |
|
Triggers
There are no triggers for table recolte_graine
Rules
There are no rules for table recolte_graine
Policies
There are no policies for table recolte_graine
Referenced
There are no tables referenced by table recolte_graine
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
3699 |
Pages |
27 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.recolte_graine (
idlot_gr INTEGER NOT NULL,
annee INTEGER,
mois INTEGER,
age_recolte INTEGER,
nb_arbre INTEGER,
nb_cone NUMERIC,
densite NUMERIC,
distance NUMERIC,
commentaire TEXT,
recup_ch VARCHAR(50),
eclaircie BOOLEAN,
induction_florale BOOLEAN,
sup_pollinique BOOLEAN,
nb_sacs INTEGER,
CONSTRAINT recolte_graine_pkey PRIMARY KEY(idlot_gr),
CONSTRAINT fk_recolte_graine FOREIGN KEY (idlot_gr)
REFERENCES public.graine(idlot_gr)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON COLUMN public.recolte_graine.nb_sacs
IS 'Ajout à la place de autre_cru_geno';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |