debian-mirror-gitlab/db/post_migrate/20200127111840_fix_projects_without_project_feature.rb
2020-03-13 15:44:24 +05:30

23 lines
475 B
Ruby

# frozen_string_literal: true
class FixProjectsWithoutProjectFeature < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
BATCH_SIZE = 50_000
MIGRATION = 'FixProjectsWithoutProjectFeature'
disable_ddl_transaction!
class Project < ActiveRecord::Base
include EachBatch
end
def up
queue_background_migration_jobs_by_range_at_intervals(Project, MIGRATION, 2.minutes, batch_size: BATCH_SIZE)
end
def down
# no-op
end
end