forgeplus/app/models/relationship.rb

9 lines
238 B
Ruby
Raw Normal View History

2020-03-09 00:40:16 +08:00
# TODO: 已废弃
class Relationship < ApplicationRecord
belongs_to :follower, class_name: "User"
belongs_to :followed, class_name: "User"
validates :follower_id, presence: true
validates :followed_id, presence: true
end