Refactored and fixed seeds to work with gitlab-shell
This commit is contained in:
parent
152f87864c
commit
38985390b0
11 changed files with 14 additions and 24 deletions
21
db/fixtures/development/08_wall.rb
Normal file
21
db/fixtures/development/08_wall.rb
Normal file
|
@ -0,0 +1,21 @@
|
|||
Gitlab::Seeder.quiet do
|
||||
(1..300).each do |i|
|
||||
# Random Project
|
||||
project = Project.all.sample
|
||||
|
||||
# Random user
|
||||
user = project.users.sample
|
||||
|
||||
next unless user
|
||||
|
||||
user_id = user.id
|
||||
|
||||
Note.seed(:id, [{
|
||||
id: i,
|
||||
project_id: project.id,
|
||||
author_id: user_id,
|
||||
note: Faker::Lorem.sentence(6)
|
||||
}])
|
||||
print('.')
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue