debian-mirror-gitlab/db/post_migrate/20190527194900_schedule_calculate_wiki_sizes.rb

33 lines
747 B
Ruby
Raw Normal View History

2019-09-04 21:01:54 +05:30
# frozen_string_literal: true
class ScheduleCalculateWikiSizes < ActiveRecord::Migration[5.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
MIGRATION = 'CalculateWikiSizes'
BATCH_SIZE = 100000
BATCH_TIME = 5.minutes
class ProjectStatistics < ActiveRecord::Base
self.table_name = 'project_statistics'
scope :without_wiki_size, -> { where(wiki_size: nil) }
include ::EachBatch
end
disable_ddl_transaction!
2021-09-04 01:27:46 +05:30
# Disabling this old migration because it should already run
# in 14.0. This will allow us to remove some `technical debt`
# in ProjectStatistics model, because of some columns
# not present by the time the migration is run.
2019-09-04 21:01:54 +05:30
def up
2021-09-04 01:27:46 +05:30
# no-op
2019-09-04 21:01:54 +05:30
end
def down
# no-op
end
end