2020-08-05 20:09:53 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-08-18 11:10:33 -04:00
|
|
|
# This migration is not needed anymore and was disabled, because we're now
|
|
|
|
# also backfilling design positions immediately before moving a design.
|
|
|
|
#
|
|
|
|
# See https://gitlab.com/gitlab-org/gitlab/-/merge_requests/39555
|
2020-08-05 20:09:53 -04:00
|
|
|
class BackfillDesignsRelativePosition < ActiveRecord::Migration[6.0]
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def up
|
2020-08-18 11:10:33 -04:00
|
|
|
# no-op
|
2020-08-05 20:09:53 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
2020-08-18 11:10:33 -04:00
|
|
|
# no-op
|
2020-08-05 20:09:53 -04:00
|
|
|
end
|
|
|
|
end
|