Add indices on specific sounding timestamp fields
This commit is contained in:
parent
f1140311c3
commit
28010384fb
1 changed files with 2 additions and 0 deletions
|
@ -113,6 +113,8 @@ create table xmet_sounding (
|
|||
);
|
||||
|
||||
create index xmet_sounding_station_idx on xmet_sounding (station);
|
||||
create index xmet_sounding_timestamp_observed_idx on xmet_sounding (timestamp_observed);
|
||||
create index xmet_sounding_timestamp_released_idx on xmet_sounding (timestamp_released);
|
||||
create index xmet_sounding_timestamp_observed_released_idx on xmet_sounding (timestamp_observed, timestamp_released);
|
||||
|
||||
select AddGeometryColumn('xmet_sounding', 'location', 4326, 'POINT'),
|
||||
|
|
Loading…
Add table
Reference in a new issue