debian-mirror-gitlab/db/post_migrate/20200724130639_backfill_designs_relative_position.rb
2020-10-24 23:57:45 +05:30

20 lines
442 B
Ruby

# frozen_string_literal: true
# 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
class BackfillDesignsRelativePosition < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
# no-op
end
def down
# no-op
end
end