class ActiveRecord::ConnectionAdapters::MySQL::TableDefinition

Private Instance Methods

aliased_types(name, fallback) click to toggle source
# File lib/active_record/connection_adapters/mysql/schema_definitions.rb, line 72
def aliased_types(name, fallback)
  fallback
end
integer_like_primary_key_type(type, options) click to toggle source
# File lib/active_record/connection_adapters/mysql/schema_definitions.rb, line 76
def integer_like_primary_key_type(type, options)
  options[:auto_increment] = true
  type
end