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

20220420135245_fix_batched_background_migration_default_arguments.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42a0ee32ecb5fd6025c44384f77e8386a68f51b7 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class FixBatchedBackgroundMigrationDefaultArguments < Gitlab::Database::Migration[1.0]
  def change
    change_column_default :batched_background_migrations, :job_arguments, from: '[]', to: []
  end
end