Skip to content

Commit

Permalink
feat: add index to provider_version_id column in verifications table
Browse files Browse the repository at this point in the history
  • Loading branch information
bethesque committed Nov 29, 2022
1 parent 49c60c5 commit aac3372
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@


Sequel.migration do
up do
alter_table(:verifications) do
add_index([:provider_version_id], name: "verifications_provider_version_id_index")
end

end

down do
alter_table(:verifications) do
drop_index([:provider_version_id], name: "verifications_provider_version_id_index")
end
end
end

0 comments on commit aac3372

Please sign in to comment.