class Esquema::Builder

def add_properties_from_associations

Adds properties from associations to the schema.
def add_properties_from_associations
  associations.each do |association|
    next if config.exclude_associations?
    @properties[association.name] ||= Property.new(association)
  end
end