26 lines
640 B
Ruby
26 lines
640 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: action_pipeline_results
|
|
#
|
|
# id :integer not null, primary key
|
|
# project_id :integer
|
|
# run_id :integer
|
|
# step_id :string(255)
|
|
# job_name :string(255)
|
|
# job_show_type :string(255)
|
|
# job_result :text(65535)
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_action_pipeline_results_on_project_id (project_id)
|
|
# index_action_pipeline_results_on_run_id (run_id)
|
|
#
|
|
|
|
class Action::PipelineResult < ApplicationRecord
|
|
self.table_name = 'action_pipeline_results'
|
|
belongs_to :project
|
|
end
|
|
|