mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 20:00:49 +08:00
7 lines
177 B
Ruby
7 lines
177 B
Ruby
class Ci::Step < Ci::RemoteBase
|
|
self.primary_key = 'step_id'
|
|
|
|
belongs_to :stage, foreign_key: :step_stage_id
|
|
has_one :log, class_name: 'Ci::Log', foreign_key: :log_id
|
|
end
|