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
15
db/fixtures/development/05_users.rb
Normal file
15
db/fixtures/development/05_users.rb
Normal file
|
@ -0,0 +1,15 @@
|
|||
Gitlab::Seeder.quiet do
|
||||
(2..300).each do |i|
|
||||
begin
|
||||
User.seed(:id, [{
|
||||
id: i,
|
||||
username: Faker::Internet.user_name,
|
||||
name: Faker::Name.name,
|
||||
email: Faker::Internet.email,
|
||||
}])
|
||||
print '.'
|
||||
rescue ActiveRecord::RecordNotSaved
|
||||
print 'F'
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue