Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table reception_graine
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
idlot_gr |
integer |
|
|
|
||||
|
|
annee |
integer |
|
|
|
|
|
|
|
mois |
integer |
|
|
|
|
|
|
|
qte_recue |
numeric |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
recup_ch |
varchar(50) |
|
|
|
|
|
|
|
conteneurs_recus |
integer |
|
|
|
|
|
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 reception_graine
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idlot_gr |
|
Triggers
There are no triggers for table reception_graine
Rules
There are no rules for table reception_graine
Policies
There are no policies for table reception_graine
Referenced
There are no tables referenced by table reception_graine
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
11743 |
Pages |
100 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.reception_graine (
idlot_gr INTEGER NOT NULL,
annee INTEGER,
mois INTEGER,
qte_recue NUMERIC,
commentaire TEXT,
recup_ch VARCHAR(50),
conteneurs_recus INTEGER,
CONSTRAINT reception_graine_pkey PRIMARY KEY(idlot_gr),
CONSTRAINT fk_reception_graine FOREIGN KEY (idlot_gr)
REFERENCES public.graine(idlot_gr)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |