mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
21 lines
375 B
PHP
21 lines
375 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run(): void
|
|
{
|
|
$this->call(DefaultAlertTemplateSeeder::class);
|
|
$this->call(ConfigSeeder::class);
|
|
$this->call(RolesSeeder::class);
|
|
}
|
|
}
|