Add seeders for services, cleanup environment setters

This commit is contained in:
Dane Everitt 2016-09-07 17:48:20 -04:00
parent 41a16d5fdc
commit 05f0f48caf
9 changed files with 487 additions and 10 deletions

View file

@ -14,7 +14,8 @@ class DatabaseSeeder extends Seeder
{
Model::unguard();
// $this->call(UserTableSeeder::class);
$this->call(MinecraftServiceTableSeeder::class);
$this->call(SourceServiceTableSeeder::class);
Model::reguard();
}