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
22
db/fixtures/development/06_teams.rb
Normal file
22
db/fixtures/development/06_teams.rb
Normal file
|
@ -0,0 +1,22 @@
|
|||
Gitlab::Seeder.quiet do
|
||||
|
||||
(1..300).each do |i|
|
||||
# Random Project
|
||||
project = Project.scoped.sample
|
||||
|
||||
# Random user
|
||||
user = User.not_in_project(project).sample
|
||||
|
||||
next unless user
|
||||
|
||||
UsersProject.seed(:id, [{
|
||||
id: i,
|
||||
project_id: project.id,
|
||||
user_id: user.id,
|
||||
project_access: UsersProject.access_roles.values.sample
|
||||
}])
|
||||
|
||||
print('.')
|
||||
end
|
||||
end
|
||||
puts "OK".green
|
Loading…
Add table
Add a link
Reference in a new issue