mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-17 00:26:07 +10:00
* Improt projects inline so after seeds you have repos * Fix merge request seeds * Add comment seeds to both issues and merge requests * Remove some projects from seeds to increase speed Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
17 lines
346 B
Ruby
17 lines
346 B
Ruby
Gitlab::Seeder.quiet do
|
|
(2..20).each do |i|
|
|
begin
|
|
User.seed(:id, [{
|
|
id: i,
|
|
username: Faker::Internet.user_name,
|
|
name: Faker::Name.name,
|
|
email: Faker::Internet.email,
|
|
confirmed_at: DateTime.now
|
|
}])
|
|
print '.'
|
|
rescue ActiveRecord::RecordNotSaved
|
|
print 'F'
|
|
end
|
|
end
|
|
end
|