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

20170601163708_add_artifacts_store_to_ci_build.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e82109190a72be58775aa15075635ff107679841 (plain)
1
2
3
4
5
6
7
8
9
10
class AddArtifactsStoreToCiBuild < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column(:ci_builds, :artifacts_file_store, :integer)
    add_column(:ci_builds, :artifacts_metadata_store, :integer)
  end
end