gitlab-org--gitlab-foss/db/post_migrate/20210811214811_schedule_cop...

14 lines
297 B
Ruby

# frozen_string_literal: true
class ScheduleCopyCiBuildsColumnsToSecurityScans < ActiveRecord::Migration[6.1]
include Gitlab::Database::MigrationHelpers
def up
# no-op as we found an issue with bg migration, we fixed it and rescheduling it again.
end
def down
# no-op
end
end