20 lines
486 B
PHP
20 lines
486 B
PHP
<?php
|
|
|
|
namespace App\Database\Seeds;
|
|
|
|
use CodeIgniter\Database\Seeder;
|
|
|
|
class DBSeeder extends Seeder {
|
|
public function run() {
|
|
$this->call('ValueSetSeeder');
|
|
$this->call('ValueSetCountrySeeder');
|
|
$this->call('OrganizationSeeder');
|
|
$this->call('CounterSeeder');
|
|
$this->call('ContactSeeder');
|
|
$this->call('LocationSeeder');
|
|
$this->call('SpecimenSeeder');
|
|
$this->call('TestSeeder');
|
|
$this->call('PatientSeeder');
|
|
$this->call('DummySeeder');
|
|
}
|
|
} |