Fixed some db bugs. These will only pop up when developing.

This commit is contained in:
James Cole
2016-09-16 07:16:09 +02:00
parent 2f93784acd
commit 9ffc5d857c
4 changed files with 9 additions and 9 deletions

View File

@@ -14,11 +14,11 @@ class DatabaseSeeder extends Seeder
*/
public function run()
{
$this->call('AccountTypeSeeder');
$this->call('TransactionCurrencySeeder');
$this->call('TransactionTypeSeeder');
$this->call('PermissionSeeder');
$this->call('TestDataSeeder');
$this->call(AccountTypeSeeder::class);
$this->call(TransactionCurrencySeeder::class);
$this->call(TransactionTypeSeeder::class);
$this->call(PermissionSeeder::class);
$this->call(TestDataSeeder::class);
}
}