Schema
Owner
postgres
Tablespace
(default)
Descriptions
There is no description for table spectre_phyto
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
id_spectre_phyto |
serial |
|
nextval('spectre_phyto_id_spectre_phyto_seq'::regclass) |
|
|||
|
|
long_onde_phyto |
varchar |
|
|
|
|
|
|
|
absorbance_phyto |
varchar |
|
|
|
|
|
|
spect_echant_phyto |
integer |
|
|
|
|
|
|
|
t_spectro_phyto |
integer |
|
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
spect_echant_phyto |
id_phyto |
No Action |
No Action |
|
Immediate |
|
||
t_spectro_phyto |
id_spectro_phyto |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table spectre_phyto
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
spect_echant_phyto |
|
|
|
|
btree |
|
t_spectro_phyto |
|
|
|
|
btree |
|
id_spectre_phyto |
|
Triggers
There are no triggers for table spectre_phyto
Rules
There are no rules for table spectre_phyto
Policies
There are no policies for table spectre_phyto
Referenced
There are no tables referenced by table spectre_phyto
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
-1 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.spectre_phyto (
id_spectre_phyto SERIAL,
long_onde_phyto VARCHAR,
absorbance_phyto VARCHAR,
spect_echant_phyto INTEGER,
t_spectro_phyto INTEGER,
CONSTRAINT stk_id_spectre_phyto PRIMARY KEY(id_spectre_phyto),
CONSTRAINT st_spe_ech_phyt FOREIGN KEY (spect_echant_phyto)
REFERENCES public.phytotheque(id_phyto)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT st_t_spectro_phy FOREIGN KEY (t_spectro_phyto)
REFERENCES public.type_spectro_phyto(id_spectro_phyto)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
CREATE INDEX fki_st_spe_ech_phyt ON public.spectre_phyto
USING btree (spect_echant_phyto);
CREATE INDEX fki_st_t_spectro_phy ON public.spectre_phyto
USING btree (t_spectro_phyto);
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |