summaryrefslogtreecommitdiff
path: root/db/migrate/20200429181955_add_default_value_for_file_store_to_ci_job_artifacts.rb
blob: ac3d5e41e3ebe1b41f9eb6ab3e3c61a0fc883d91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class AddDefaultValueForFileStoreToCiJobArtifacts < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      change_column_default :ci_job_artifacts, :file_store, 1
    end
  end

  def down
    with_lock_retries do
      change_column_default :ci_job_artifacts, :file_store, nil
    end
  end
end