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

20170609183112_remove_position_from_issuables.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edad0a502b40a169e40ce1dc8710f8b5b0891579 (plain)
1
2
3
4
5
6
7
8
class RemovePositionFromIssuables < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    remove_column :issues, :position, :integer
    remove_column :merge_requests, :position, :integer
  end
end