class ActiveRecord::ConnectionAdapters::AlterTable
def add_column(name, type, **options)
def add_column(name, type, **options) name = name.to_s type = type.to_sym @adds << AddColumnDefinition.new(@td.new_column_definition(name, type, **options)) end