summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210811214811_schedule_copy_ci_builds_columns_to_security_scans.rb
blob: 106d1430dca87afc2dcf8d9d11037e28ccba5ca8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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