summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170609183112_remove_position_from_issuables.rb
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