mirror of
https://github.com/ConjureETS/Interface-Admin.git
synced 2026-03-24 12:31:07 +00:00
19 lines
361 B
PHP
19 lines
361 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(CommunicationMethodTableSeeder::class);
|
|
$this->call(ProgramTableSeeder::class);
|
|
$this->call(DefaultUserTableSeeder::class);
|
|
}
|
|
}
|