Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20190220150130_add_extra_shas_to_ci_pipelines.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45c7c0949c6d8385fd8730c71ec20db4f989bdb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class AddExtraShasToCiPipelines < ActiveRecord::Migration[5.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :ci_pipelines, :source_sha, :binary
    add_column :ci_pipelines, :target_sha, :binary
  end
end