database/seeders/ProductionSeeder.php: Remove call to WrathRaidSeeder and rename to AdminSeeder.php
This commit is contained in:
parent
37db852014
commit
ed588c9790
1 changed files with 1 additions and 3 deletions
|
|
@ -5,7 +5,7 @@ namespace Database\Seeders;
|
||||||
use App\Models\Admin;
|
use App\Models\Admin;
|
||||||
use Illuminate\Database\Seeder;
|
use Illuminate\Database\Seeder;
|
||||||
|
|
||||||
class ProductionSeeder extends Seeder
|
class AdminSeeder extends Seeder
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Seed the application's database with production data.
|
* Seed the application's database with production data.
|
||||||
|
|
@ -14,8 +14,6 @@ class ProductionSeeder extends Seeder
|
||||||
*/
|
*/
|
||||||
public function run()
|
public function run()
|
||||||
{
|
{
|
||||||
$this->call(WrathRaidSeeder::class);
|
|
||||||
|
|
||||||
// Create admins :)
|
// Create admins :)
|
||||||
Admin::create([
|
Admin::create([
|
||||||
'username' => 'pnx',
|
'username' => 'pnx',
|
||||||
Reference in a new issue