debian-mirror-gitlab/db/post_migrate/20170609183112_remove_position_from_issuables.rb

9 lines
210 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class RemovePositionFromIssuables < ActiveRecord::Migration[4.2]
2017-09-10 17:25:29 +05:30
DOWNTIME = false
def change
remove_column :issues, :position, :integer
remove_column :merge_requests, :position, :integer
end
end