Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
398 B

class RemoveManualAddressEntryFromLogs < ActiveRecord::Migration[7.2]
def change
if column_exists?(:sales_logs, :manual_address_entry_selected)
remove_column :sales_logs, :manual_address_entry_selected, :boolean
end
if column_exists?(:lettings_logs, :manual_address_entry_selected)
remove_column :lettings_logs, :manual_address_entry_selected, :boolean
end
end
end