debian-mirror-gitlab/lib/tasks/migrate/migrate_iids.rake

48 lines
928 B
Ruby
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
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
puts 'Issues'.color(:yellow)
2014-09-02 18:07:02 +05:30
Issue.where(iid: nil).find_each(batch_size: 100) do |issue|
2019-07-07 11:18:12 +05:30
issue.set_iid
2018-03-17 18:26:18 +05:30
2019-07-07 11:18:12 +05:30
if issue.update_attribute(:iid, issue.iid)
print '.'
else
2014-09-02 18:07:02 +05:30
print 'F'
end
2021-06-08 01:23:25 +05:30
rescue StandardError
2019-07-07 11:18:12 +05:30
print 'F'
2014-09-02 18:07:02 +05:30
end
puts 'done'
puts 'Merge Requests'.color(:yellow)
2014-09-02 18:07:02 +05:30
MergeRequest.where(iid: nil).find_each(batch_size: 100) do |mr|
2019-07-07 11:18:12 +05:30
mr.set_iid
2018-03-17 18:26:18 +05:30
2019-07-07 11:18:12 +05:30
if mr.update_attribute(:iid, mr.iid)
print '.'
else
2014-09-02 18:07:02 +05:30
print 'F'
end
2021-06-08 01:23:25 +05:30
rescue StandardError
2019-07-07 11:18:12 +05:30
print 'F'
2014-09-02 18:07:02 +05:30
end
puts 'done'
puts 'Milestones'.color(:yellow)
2014-09-02 18:07:02 +05:30
Milestone.where(iid: nil).find_each(batch_size: 100) do |m|
2019-07-07 11:18:12 +05:30
m.set_iid
2018-03-17 18:26:18 +05:30
2019-07-07 11:18:12 +05:30
if m.update_attribute(:iid, m.iid)
print '.'
else
2014-09-02 18:07:02 +05:30
print 'F'
end
2021-06-08 01:23:25 +05:30
rescue StandardError
2019-07-07 11:18:12 +05:30
print 'F'
2014-09-02 18:07:02 +05:30
end
puts 'done'
end