Skip to content

Commit

Permalink
add missed
Browse files Browse the repository at this point in the history
  • Loading branch information
rromanchuk committed Dec 31, 2023
1 parent 62c9bd3 commit 230de26
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions personal/db/wx_structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ DROP INDEX IF EXISTS public.index_tds_metars_on_station_id;
DROP INDEX IF EXISTS public.index_tds_metars_on_observation_time;
DROP INDEX IF EXISTS public.index_tds_metars_on_batch_id;
DROP INDEX IF EXISTS public.index_tds_batches_on_report_type;
DROP INDEX IF EXISTS public.index_tds_batches_on_processed_at;
DROP INDEX IF EXISTS public.index_tds_aireps_uniqueness;
DROP INDEX IF EXISTS public.index_tds_aireps_on_observation_time;
DROP INDEX IF EXISTS public.index_tds_aireps_on_batch_id;
Expand Down Expand Up @@ -438,6 +439,13 @@ CREATE INDEX index_tds_aireps_on_observation_time ON public.tds_aireps USING btr
CREATE UNIQUE INDEX index_tds_aireps_uniqueness ON public.tds_aireps USING btree (raw_text, observation_time);


--
-- Name: index_tds_batches_on_processed_at; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_tds_batches_on_processed_at ON public.tds_batches USING btree (processed_at);


--
-- Name: index_tds_batches_on_report_type; Type: INDEX; Schema: public; Owner: -
--
Expand Down Expand Up @@ -635,6 +643,7 @@ ALTER TABLE ONLY public.tds_tafs
SET search_path TO public, postgis;

INSERT INTO "schema_migrations" (version) VALUES
('20231231040823'),
('20231231005753'),
('20231231003005'),
('20230403001620'),
Expand Down

0 comments on commit 230de26

Please sign in to comment.