Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220120094340_drop_position_from_security_findings.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56af346ad1bd332af1bcc0fccc8216888ffadc60 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class DropPositionFromSecurityFindings < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    remove_column :security_findings, :position, :integer
  end
end