summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170309171644_reset_relative_position_for_issue.rb
blob: ce4be131d405c5900e9bc802ce53bfabea85fbcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class ResetRelativePositionForIssue < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    execute <<-EOS
      UPDATE issues SET relative_position = NULL
        WHERE issues.relative_position IS NOT NULL;
    EOS
  end

  def down
  end
end