debian-mirror-gitlab/app/models/users/user_follow_user.rb
2021-03-11 19:13:27 +05:30

7 lines
186 B
Ruby

# frozen_string_literal: true
module Users
class UserFollowUser < ApplicationRecord
belongs_to :follower, class_name: 'User'
belongs_to :followee, class_name: 'User'
end
end