|
|
|
@ -3,6 +3,7 @@ class RemoveCheckboxParentFields < ActiveRecord::Migration[7.0]
|
|
|
|
|
change_table :case_logs, bulk: true do |t| |
|
|
|
|
t.remove :accessibility_requirements |
|
|
|
|
t.remove :condition_effects |
|
|
|
|
t.remove :reasonable_preference_reason |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
@ -10,6 +11,7 @@ class RemoveCheckboxParentFields < ActiveRecord::Migration[7.0]
|
|
|
|
|
change_table :case_logs, bulk: true do |t| |
|
|
|
|
t.column :accessibility_requirements, :string |
|
|
|
|
t.column :condition_effects, :string |
|
|
|
|
t.remove :reasonable_preference_reason, :string |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|