3 changed files with 15 additions and 5 deletions
@ -0,0 +1,13 @@ |
|||||||
|
class RemainingCoreMigrations < ActiveRecord::Migration[6.1] |
||||||
|
def up |
||||||
|
change_table :case_logs, bulk: true do |_t| |
||||||
|
remove_column :case_logs, :condition_effects_prefer_not_to_say |
||||||
|
end |
||||||
|
end |
||||||
|
|
||||||
|
def down |
||||||
|
change_table :case_logs, bulk: true do |_t| |
||||||
|
add_column :case_logs, :condition_effects_prefer_not_to_say, :integer |
||||||
|
end |
||||||
|
end |
||||||
|
end |
Loading…
Reference in new issue