Methods
T
Instance Public methods
type()
# File activerecord/lib/active_record/connection_adapters/mysql_adapter.rb, line 331
def type; :datetime; end
type_cast(value)
# File activerecord/lib/active_record/connection_adapters/mysql_adapter.rb, line 333
def type_cast(value)
  return if value.nil?

  # FIXME: probably we can improve this since we know it is mysql
  # specific
  ConnectionAdapters::Column.string_to_time value
end