More seeds
This commit is contained in:
parent
e4cf99db46
commit
36dbac2fd9
5 changed files with 49 additions and 65 deletions
20
db/fixtures/development/007_issues.rb
Normal file
20
db/fixtures/development/007_issues.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
(1..300).each do |i|
|
||||
# Random Project
|
||||
project_id = rand(2) + 1
|
||||
project = Project.find(project_id)
|
||||
|
||||
# Random user
|
||||
user = project.users.sample
|
||||
user_id = user.id
|
||||
IssueObserver.current_user = user
|
||||
|
||||
Issue.seed(:id, [{
|
||||
id: i,
|
||||
project_id: project_id,
|
||||
author_id: user_id,
|
||||
assignee_id: user_id,
|
||||
closed: [true, false].sample,
|
||||
milestone: project.milestones.sample,
|
||||
title: Faker::Lorem.sentence(6)
|
||||
}])
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue