Seed only in test [skip ci]

This commit is contained in:
James Cole 2015-01-31 06:34:31 +01:00
parent cd0033791f
commit 3254565c09

View File

@ -19,7 +19,7 @@ class DatabaseSeeder extends Seeder
$this->call('TransactionCurrencySeeder');
$this->call('TransactionTypeSeeder');
if (App::environment() == 'testing' || App::environment() == 'homestead') {
if (App::environment() == 'testing') {
$this->call('TestDataSeeder');
}
}