# File app/models/authorship.rb, line 20
  def set_position_if_empty
    return true unless position.blank?
    others = self.proposal.authorships

    if others.blank?
      self.position = 1
    else
      self.position = others.map {|a| a.position}.sort.last + 1
    end
  end