Returns true if this type
can convert value to a type that is usable by the
database. For example a boolean type can return true
if the value parameter is a Ruby
boolean, but may return false if the value parameter is some other
object.
# File activemodel/lib/active_model/type/value.rb, line 28
def serializable?(value)
true
end