diff options
-rw-r--r-- | db/fixtures/development/08_wall.rb | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/db/fixtures/development/08_wall.rb b/db/fixtures/development/08_wall.rb deleted file mode 100644 index c4e304cc217..00000000000 --- a/db/fixtures/development/08_wall.rb +++ /dev/null @@ -1,21 +0,0 @@ -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 |