class Avo::Fields::BelongsToField

def database_id

def database_id
  # If the field is a polymorphic value, return the polymorphic_type as key and pre-fill the _id in fill_field.
  return "#{polymorphic_as}_type" if polymorphic_as.present?
  foreign_key
rescue
  id
end