class Tapioca::Dsl::Helpers::ActiveRecordColumnTypeHelper::ColumnTypeOption

def from_options(options, &block)

def from_options(options, &block)
  column_type_option = Persisted
  value = options["ActiveRecordColumnTypes"]
  if value
    if has_serialized?(value)
      column_type_option = from_serialized(value)
    else
      block.call(value, column_type_option)
    end
  end
  column_type_option
end

def nilable?

def nilable?
  self == ColumnTypeOption::Nilable
end

def persisted?

def persisted?
  self == ColumnTypeOption::Persisted
end

def untyped?

def untyped?
  self == ColumnTypeOption::Untyped
end