debian-mirror-gitlab/db/migrate/20190104182041_cleanup_legacy_artifact_migration.rb
2019-03-02 22:35:43 +05:30

35 lines
774 B
Ruby

# frozen_string_literal: true
class CleanupLegacyArtifactMigration < ActiveRecord::Migration[5.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
class Build < ActiveRecord::Base
include EachBatch
self.table_name = 'ci_builds'
self.inheritance_column = :_type_disabled
scope :with_legacy_artifacts, -> { where("artifacts_file <> ''") }
end
def up
Gitlab::BackgroundMigration.steal('MigrateLegacyArtifacts')
CleanupLegacyArtifactMigration::Build
.with_legacy_artifacts
.each_batch(of: 100) do |batch|
range = batch.pluck('MIN(id)', 'MAX(id)').first
Gitlab::BackgroundMigration::MigrateLegacyArtifacts.new.perform(*range)
end
end
def down
# no-op
end
end