20 lines
716 B
Ruby
20 lines
716 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: ci_pipelines
|
|
#
|
|
# id :integer not null, primary key
|
|
# pipeline_name :string(255) not null
|
|
# file_name :string(255) not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# pipeline_status :string(50) default("unknown"), not null
|
|
#
|
|
|
|
class Ci::Pipeline < Ci::LocalBase
|
|
validates :pipeline_name, presence: {message: "流水线名称不能为空"}
|
|
validates :file_name, presence: {message: "流水线文件名称不能为空"}
|
|
|
|
has_many :pipeline_stages, -> { reorder(show_index: :asc) }, foreign_key: "pipeline_id", :class_name => 'Ci::PipelineStage', dependent: :destroy
|
|
|
|
end
|