9 lines
154 B
Ruby
9 lines
154 B
Ruby
|
module Ci
|
||
|
class PipelineScheduleVariable < ActiveRecord::Base
|
||
|
extend Ci::Model
|
||
|
include HasVariable
|
||
|
|
||
|
belongs_to :pipeline_schedule
|
||
|
end
|
||
|
end
|