From 4efb93ea452c196b7c1cddb07071b8896473d960 Mon Sep 17 00:00:00 2001 From: Taylor Griffin Date: Mon, 12 Jan 2015 07:48:48 +1100 Subject: [PATCH] don't load test and admin users in staging --- db/seeds.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/db/seeds.rb b/db/seeds.rb index 98ac2c24a..0243d4635 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -11,13 +11,13 @@ def load_data create_cropbot load_crops load_plant_parts + load_paid_account_types + load_products # for development and staging environments only - if Rails.env.development? || Rails.env.staging? + if Rails.env.development? load_test_users load_admin_users - load_paid_account_types - load_products end end