mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: Apply syntax_tree formatting to db/*
This commit is contained in:
@@ -1,17 +1,12 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'migration/table_dropper'
|
||||
require "migration/table_dropper"
|
||||
|
||||
class DropUnusedAuthTablesAgain < ActiveRecord::Migration[5.2]
|
||||
DROPPED_TABLES ||= %i{
|
||||
facebook_user_infos
|
||||
twitter_user_infos
|
||||
}
|
||||
DROPPED_TABLES ||= %i[facebook_user_infos twitter_user_infos]
|
||||
|
||||
def up
|
||||
DROPPED_TABLES.each do |table|
|
||||
Migration::TableDropper.execute_drop(table)
|
||||
end
|
||||
DROPPED_TABLES.each { |table| Migration::TableDropper.execute_drop(table) }
|
||||
end
|
||||
|
||||
def down
|
||||
|
||||
Reference in New Issue
Block a user