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

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

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