2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-15 10:55:11 -04:00
|
|
|
require 'migration/column_dropper'
|
|
|
|
|
|
|
|
class DropEmailUserOptionsColumns < ActiveRecord::Migration[5.2]
|
2019-08-08 10:06:27 -04:00
|
|
|
DROPPED_COLUMNS ||= {
|
|
|
|
user_options: %i{
|
2019-03-15 10:55:11 -04:00
|
|
|
email_direct
|
|
|
|
email_private_messages
|
|
|
|
email_always
|
|
|
|
},
|
2019-08-08 10:06:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
def up
|
|
|
|
DROPPED_COLUMNS.each do |table, columns|
|
2019-03-15 10:55:11 -04:00
|
|
|
Migration::ColumnDropper.execute_drop(table, columns)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
raise ActiveRecord::IrreversibleMigration
|
|
|
|
end
|
|
|
|
end
|