DEV: Apply syntax_tree formatting to db/*

This commit is contained in:
David Taylor
2023-01-09 11:59:41 +00:00
parent cb932d6ee1
commit b0fda61a8e
467 changed files with 1682 additions and 1624 deletions

View File

@@ -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