feature/share-libs
rb 6 lines 211 Bytes
Raw
1 class Relationship < ApplicationRecord
2 belongs_to :follower, class_name: 'User'
3 belongs_to :followed, class_name: 'User'
4 validates :follower_id, presence: true
5 validates :followed_id, presence: true
6 end