Schema
Owner
postgres
Tablespace
(default)
Descriptions
There is no description for table microresp_diams
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
id_microresp |
serial |
|
nextval('microresp_id_microresp_seq'::regclass) |
|
|||
|
sk_echant_micro |
integer |
|
|
|
|
|
|
|
|
masse_tare |
varchar |
|
|
|
|
|
|
|
masse_fr_tare |
varchar |
|
|
|
|
|
|
|
masse_seche_tare |
varchar |
|
|
|
|
|
|
|
masse_fr |
varchar |
|
|
|
|
|
|
|
masse_s |
varchar |
|
|
|
|
|
|
|
humidite_ponde_humide |
varchar |
|
|
|
|
|
|
|
humidite_ponde_seche |
varchar |
|
|
|
|
|
|
|
date_microresp_diams |
varchar |
|
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
sk_echant_micro |
id_echant |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table microresp_diams
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
sk_echant_micro |
|
|
|
|
btree |
|
id_microresp |
|
Triggers
There are no triggers for table microresp_diams
Rules
There are no rules for table microresp_diams
Policies
There are no policies for table microresp_diams
Referenced
There are no tables referenced by table microresp_diams
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
374 |
Pages |
5 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.microresp_diams (
id_microresp SERIAL,
sk_echant_micro INTEGER,
masse_tare VARCHAR,
masse_fr_tare VARCHAR,
masse_seche_tare VARCHAR,
masse_fr VARCHAR,
masse_s VARCHAR,
humidite_ponde_humide VARCHAR,
humidite_ponde_seche VARCHAR,
date_microresp_diams VARCHAR,
CONSTRAINT pmk_microresp PRIMARY KEY(id_microresp),
CONSTRAINT stk_ech_micro FOREIGN KEY (sk_echant_micro)
REFERENCES public.pedotheque(id_echant)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
CREATE INDEX fki_stk_ech_micro ON public.microresp_diams
USING btree (sk_echant_micro);
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |