add user follow feature
This commit is contained in:
4
app/models/user_follow.rb
Normal file
4
app/models/user_follow.rb
Normal file
@@ -0,0 +1,4 @@
|
||||
class UserFollow < ApplicationRecord
|
||||
belongs_to :follower, class_name: 'User'
|
||||
belongs_to :followed, class_name: 'User'
|
||||
end
|
||||
Reference in New Issue
Block a user