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]
|
|
|
|
DROPPED_COLUMNS ||= { user_options: %i[email_direct email_private_messages email_always] }
|
2019-08-08 10:06:27 -04:00
|
|
|
|
|
|
|
def up
|
2019-03-15 10:55:11 -04:00
|
|
|
DROPPED_COLUMNS.each { |table, columns| Migration::ColumnDropper.execute_drop(table, columns) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
raise ActiveRecord::IrreversibleMigration
|
|
|
|
end
|
|
|
|
end
|