All checks were successful
continuous-integration/drone/push Build is passing
6 lines
195 B
SQL
6 lines
195 B
SQL
-- +goose Up
|
|
CREATE INDEX IF NOT EXISTS idx_snapshot_registry_type_time ON snapshot_registry (snapshot_type, snapshot_time);
|
|
|
|
-- +goose Down
|
|
DROP INDEX IF EXISTS idx_snapshot_registry_type_time;
|