mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-04 04:03:25 +08:00
7 lines
162 B
Ruby
7 lines
162 B
Ruby
class ForkUser < ApplicationRecord
|
|
belongs_to :project
|
|
belongs_to :user
|
|
belongs_to :fork_project, class_name: 'Project', foreign_key: :fork_project_id
|
|
|
|
end
|