forked from lix-project/hydra
Merge pull request #1279 from DeterminateSystems/drop-unnecessary-index
Drop unused IndexBuildOutputsOnPath index
This commit is contained in:
commit
ecfa817d30
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -4,7 +4,7 @@ on:
|
||||||
push:
|
push:
|
||||||
jobs:
|
jobs:
|
||||||
tests:
|
tests:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
|
|
3
src/sql/upgrade-83.sql
Normal file
3
src/sql/upgrade-83.sql
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
-- This index was introduced in a migration but was never recorded in
|
||||||
|
-- hydra.sql (the source of truth), which is why `if exists` is required.
|
||||||
|
drop index if exists IndexBuildOutputsOnPath;
|
Loading…
Reference in a new issue