debian-mirror-gitlab/db/migrate/20220420135245_fix_batched_background_migration_default_arguments.rb
2022-07-16 19:58:13 +02:00

8 lines
234 B
Ruby

# 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