Commit 4a55c698 authored by Andrew8xx8's avatar Andrew8xx8

Data converting migrations was wrong. Fixed

parent 135418dc
class ConvertClosedToStateInIssue < ActiveRecord::Migration
def up
Issue.transaction do
Issue.where(closed: true).update_all("state = 'closed'")
Issue.where(closed: false).update_all("state = 'opened'")
Issue.where(closed: true).update_all(state: :closed)
Issue.where(closed: false).update_all(state: :opened)
end
end
def down
Issue.transaction do
Issue.where(state: :closed).update_all("closed = 1")
Issue.where(state: :closed).update_all(closed: true)
end
end
end
class ConvertClosedToStateInMergeRequest < ActiveRecord::Migration
def up
MergeRequest.transaction do
MergeRequest.where(closed: true, merged: true).update_all("state = 'merged'")
MergeRequest.where(closed: true, merged: true).update_all("state = 'closed'")
MergeRequest.where(closed: false).update_all("state = 'opened'")
MergeRequest.where(closed: true, merged: true).update_all(state: :merged)
MergeRequest.where(closed: true, merged: false).update_all(state: :closed)
MergeRequest.where(closed: false).update_all(state: :opened)
end
end
......
class ConvertClosedToStateInMilestone < ActiveRecord::Migration
def up
Milestone.transaction do
Milestone.where(closed: false).update_all("state = 'opened'")
Milestone.where(closed: false).update_all("state = 'active'")
Milestone.where(closed: true).update_all(state: :closed)
Milestone.where(closed: false).update_all(state: :active)
end
end
def down
Milestone.transaction do
Milestone.where(state: :closed).update_all("closed = 1")
Milestone.where(state: :closed).update_all(closed: true)
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment