mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 11:50:49 +08:00
9 lines
238 B
Ruby
9 lines
238 B
Ruby
# 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
|