First set of upgrade to 5.3 stuff.

This commit is contained in:
James Cole
2016-09-16 06:19:40 +02:00
parent 3aad78e6ef
commit 3d25fd79ca
54 changed files with 1365 additions and 1044 deletions

1
database/seeds/.gitkeep Normal file → Executable file
View File

@@ -0,0 +1 @@

8
database/seeds/DatabaseSeeder.php Normal file → Executable file
View File

@@ -1,8 +1,5 @@
<?php
declare(strict_types = 1);
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Seeder;
/**
@@ -10,7 +7,6 @@ use Illuminate\Database\Seeder;
*/
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
@@ -18,13 +14,11 @@ class DatabaseSeeder extends Seeder
*/
public function run()
{
Model::unguard();
$this->call('AccountTypeSeeder');
$this->call('TransactionCurrencySeeder');
$this->call('TransactionTypeSeeder');
$this->call('PermissionSeeder');
$this->call('TestDataSeeder');
}
}
}