mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-25 12:36:27 +10:00
5 lines
138 B
Ruby
5 lines
138 B
Ruby
desc "GITLAB | Migrate Milestones"
|
|
task migrate_milestones: :environment do
|
|
Milestone.where(state: nil).update_all(state: 'active')
|
|
end
|