gitlab-org--gitlab-foss/db/migrate/20220420135245_fix_batched_...

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