Skip to content

Commit

Permalink
Remove benefits_intake_uuid from form_submissions table (#19260)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thrillberg authored Nov 12, 2024
1 parent 64f66cf commit 5d33efe
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class DropBenefitsIntakeUuidIndexFromFormSubmissions < ActiveRecord::Migration[7.1]
disable_ddl_transaction!

def change
remove_index :form_submissions, name: 'index_form_submissions_on_benefits_intake_uuid', if_exists: true
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class DropBenefitsIntakeUuidFromFormSubmissions < ActiveRecord::Migration[7.1]
def change
safety_assured { remove_column :form_submissions, :benefits_intake_uuid, :uuid, if_exists: true }
end
end
4 changes: 1 addition & 3 deletions db/schema.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5d33efe

Please sign in to comment.