2015-09-11 14:41:01 +05:30
|
|
|
desc "GitLab | Build internal ids for issues and merge requests"
|
2014-09-02 18:07:02 +05:30
|
|
|
task migrate_iids: :environment do
|
2016-06-16 23:09:34 +05:30
|
|
|
puts 'Issues'.color(:yellow)
|
2014-09-02 18:07:02 +05:30
|
|
|
Issue.where(iid: nil).find_each(batch_size: 100) do |issue|
|
|
|
|
begin
|
|
|
|
issue.set_iid
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
if issue.update_attribute(:iid, issue.iid)
|
|
|
|
print '.'
|
|
|
|
else
|
|
|
|
print 'F'
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
print 'F'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
puts 'done'
|
2016-06-16 23:09:34 +05:30
|
|
|
puts 'Merge Requests'.color(:yellow)
|
2014-09-02 18:07:02 +05:30
|
|
|
MergeRequest.where(iid: nil).find_each(batch_size: 100) do |mr|
|
|
|
|
begin
|
|
|
|
mr.set_iid
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
if mr.update_attribute(:iid, mr.iid)
|
|
|
|
print '.'
|
|
|
|
else
|
|
|
|
print 'F'
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
rescue
|
2014-09-02 18:07:02 +05:30
|
|
|
print 'F'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
puts 'done'
|
2016-06-16 23:09:34 +05:30
|
|
|
puts 'Milestones'.color(:yellow)
|
2014-09-02 18:07:02 +05:30
|
|
|
Milestone.where(iid: nil).find_each(batch_size: 100) do |m|
|
|
|
|
begin
|
|
|
|
m.set_iid
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
if m.update_attribute(:iid, m.iid)
|
|
|
|
print '.'
|
|
|
|
else
|
|
|
|
print 'F'
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
print 'F'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
puts 'done'
|
|
|
|
end
|