2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-02-08 10:01:46 -05:00
|
|
|
require 'migration/table_dropper'
|
|
|
|
|
|
|
|
class DropUnusedAuthTablesAgain < ActiveRecord::Migration[5.2]
|
2019-08-08 10:06:27 -04:00
|
|
|
DROPPED_TABLES ||= %i{
|
2019-02-08 10:01:46 -05:00
|
|
|
facebook_user_infos
|
|
|
|
twitter_user_infos
|
2019-08-08 10:06:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
def up
|
|
|
|
DROPPED_TABLES.each do |table|
|
2019-02-08 10:01:46 -05:00
|
|
|
Migration::TableDropper.execute_drop(table)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
raise ActiveRecord::IrreversibleMigration
|
|
|
|
end
|
|
|
|
end
|