Schema
Owner
postgres
Tablespace
(default)
Descriptions
There is no description for table chn_frac
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
sk_echant_frac |
integer |
|
|
|
|
|
|
|
|
poids_frac |
varchar |
|
|
|
|
|
|
|
n_pourc_frac |
varchar |
|
|
|
|
|
|
|
c_pourc_frac |
varchar |
|
|
|
|
|
|
|
cn_frac |
varchar |
|
|
|
|
|
|
|
fraction |
varchar |
|
|
|
|
|
|
id_chn_frac |
serial |
|
nextval('chn_frac_id_chn_frac_seq'::regclass) |
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
sk_echant_frac |
id_echant |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table chn_frac
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
sk_echant_frac |
|
|
|
|
btree |
|
id_chn_frac |
|
Triggers
There are no triggers for table chn_frac
Rules
There are no rules for table chn_frac
Policies
There are no policies for table chn_frac
Referenced
There are no tables referenced by table chn_frac
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
367 |
Pages |
4 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.chn_frac (
sk_echant_frac INTEGER,
poids_frac VARCHAR,
n_pourc_frac VARCHAR,
c_pourc_frac VARCHAR,
cn_frac VARCHAR,
fraction VARCHAR,
id_chn_frac SERIAL,
CONSTRAINT pmk_id_chn_frac PRIMARY KEY(id_chn_frac),
CONSTRAINT stk_echant_frac FOREIGN KEY (sk_echant_frac)
REFERENCES public.pedotheque(id_echant)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
CREATE INDEX fki_stk_echant_frac ON public.chn_frac
USING btree (sk_echant_frac);
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |