Created DemoSeederCommand to replace seeders. Closes #884

This commit is contained in:
James Brooks
2015-08-07 08:31:22 +01:00
parent 55ffbd74d4
commit a05496f7d0
10 changed files with 277 additions and 333 deletions
-27
View File
@@ -1,27 +0,0 @@
<?php
/*
* This file is part of Cachet.
*
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeding.
*/
public function run()
{
$this->call('UsersTableSeeder');
$this->call('SettingsTableSeeder');
$this->call('IncidentTableSeeder');
$this->call('ComponentTableSeeder');
$this->call('MetricTableSeeder');
}
}