Skip to content

Commit

Permalink
add migration removing integration fields from error_details
Browse files Browse the repository at this point in the history
  • Loading branch information
annvelents committed Jul 23, 2024
1 parent 9d4de66 commit 54b500e
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class RemoveIntegrationReferenceFromErrorDetail < ActiveRecord::Migration[7.1]
def change
change_table :error_details do |t|
t.remove_references :integration, polymorphic: true
end
end
end

0 comments on commit 54b500e

Please sign in to comment.