Skip to content

Commit

Permalink
Plucked db changes (#15873)
Browse files Browse the repository at this point in the history
  • Loading branch information
tfink419 authored Mar 28, 2024
1 parent b190966 commit b9e4492
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions db/migrate/20240313211432_add_status_to_inprogress_form.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddStatusToInprogressForm < ActiveRecord::Migration[7.0]
def change
add_column :in_progress_forms, :status, :integer
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddStatusToInprogressFormDefault < ActiveRecord::Migration[7.0]
def change
change_column_default :in_progress_forms, :status, from: nil, to: 0
end
end
1 change: 1 addition & 0 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 b9e4492

Please sign in to comment.