class ActiveRecord::ConnectionAdapters::MysqlAdapter::Fields::Time

def type; :time; end

def type; :time; end

def type_cast(value)

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_dummy_time value
end