ip 有 creator_id 和 update_user_id ip belongs_to user 我要对 ip 的创建者排序,还有更新者排序 怎么写呢? `class Ip < ActiveRecord::Base belongs_to :user , :foreign_key => [:creator_id ,:update_user_id] end
class user < ActiveRecord::Base has_many :ips, :foreign_key => [:creator_id ,:update_user_id] end` 只有更新过的 ip 有更新者,没有跟新过的 ip update_user_id 为空
对 ip 的创建者排序 ip Ip.includes(:user).order("users.user_name asc")
对 ip 的更新者怎么排序 ip