summaryrefslogtreecommitdiff
path: root/db/migrate/20200513234502_fill_file_store_lfs_objects.rb
blob: 74066afbd838c08c312a27e74305ca5b9b0665cf (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 FillFileStoreLfsObjects < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    update_column_in_batches(:lfs_objects, :file_store, 1) do |table, query|
      query.where(table[:file_store].eq(nil))
    end
  end

  def down
    # no-op
  end
end