summaryrefslogtreecommitdiff
path: root/db/migrate/20200429181335_add_default_value_for_file_store_to_lfs_objects.rb
blob: f316a092bfca3680f33a10f0df28b1cbc0ea9e74 (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 AddDefaultValueForFileStoreToLfsObjects < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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

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