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

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

  disable_ddl_transaction!
  DOWNTIME = false

  def change
    add_column(:ci_job_artifacts, :file_store, :integer)
  end
end