summaryrefslogtreecommitdiff
path: root/db/migrate/20170929080234_add_failure_reason_to_pipelines.rb
blob: e000ee27eefde8aaf834f183bf9c87cbc83e91d8 (plain)
1
2
3
4
5
6
7
8
9
class AddFailureReasonToPipelines < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :ci_pipelines, :failure_reason, :integer
  end
end