Commit 0ed2f8de authored by Hiroyuki Sato's avatar Hiroyuki Sato

Fix rake db:seed_fu ENV=development

This problem was reported on https://gitlab.com/gitlab-org/cookbook-gitlab/issues/46
parent 9a02e27b
ActiveRecord::Base.observers.disable(:milestone_observer)
Milestone.seed(:id, [
{ id: 1, project_id: 1, title: 'v' + Faker::Address.zip_code },
{ id: 2, project_id: 1, title: 'v' + Faker::Address.zip_code },
......@@ -16,3 +18,5 @@ Milestone.all.map do |ml|
ml.set_iid
ml.save
end
ActiveRecord::Base.observers.enable(:milestone_observer)
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