summaryrefslogtreecommitdiff
path: root/db/migrate/20220420135245_fix_batched_background_migration_default_arguments.rb
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