14 lines
285 B
14 lines
285 B
2 years ago
|
class RemoveDeactivatioDate < ActiveRecord::Migration[7.0]
|
||
|
def up
|
||
|
change_table :locations, bulk: true do |t|
|
||
|
t.remove :deactivation_date
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
change_table :locations, bulk: true do |t|
|
||
|
t.column :deactivation_date, :datetime
|
||
|
end
|
||
|
end
|
||
|
end
|