You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # == 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
|