From 3cc2c6ef79c8b6f511af32c40a336bc8bfc4c2fe Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Mon, 11 Aug 2014 16:01:07 +0300 Subject: [PATCH] Remove outdated seeds Signed-off-by: Dmitriy Zaporozhets --- db/fixtures/development/08_wall.rb | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 db/fixtures/development/08_wall.rb 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