Skip to content

Commit

Permalink
feat: add version_id indexes to deployed_versions and released_versions
Browse files Browse the repository at this point in the history
PACT-1359
  • Loading branch information
bethesque committed Oct 3, 2023
1 parent 3534369 commit 00fc7d1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Sequel.migration do
change do
alter_table(:released_versions) do
add_index(:version_id, name: "released_versions_version_id_ndx")
end
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Sequel.migration do
change do
alter_table(:deployed_versions) do
add_index(:version_id, name: "deployed_versions_version_id_ndx")
end
end
end

0 comments on commit 00fc7d1

Please sign in to comment.