Add index to temp table

This commit is contained in:
Erik Johnston 2019-05-30 14:54:56 +01:00
parent e9e5d3392d
commit 6cdfb0207e

View file

@ -20,3 +20,4 @@ INSERT INTO background_updates (update_name, progress_json) VALUES
DROP TABLE IF EXISTS _extremities_to_check; -- To make this delta schema file idempotent.
CREATE TABLE _extremities_to_check AS SELECT event_id FROM event_forward_extremities;
CREATE INDEX _extremities_to_check_id ON _extremities_to_check(event_id);