clqms-be/app/Database/Seeds/DBSeeder.php
OpenCode Bot 9946978487 chore: refresh CLQMS backend baseline
Re-synced controllers, configs, libraries, seeds, and docs with the latest API expectations and response helpers.
2026-04-08 16:07:19 +07:00

23 lines
540 B
PHP
Executable File

<?php
namespace App\Database\Seeds;
use CodeIgniter\Database\Seeder;
class DBSeeder extends Seeder
{
public function run()
{
$this->call('OrganizationSeeder');
$this->call('HostAppCodingSysSeeder');
$this->call('CounterSeeder');
$this->call('ContactSeeder');
$this->call('LocationSeeder');
$this->call('AreaGeoSeeder');
$this->call('SpecimenSeeder');
$this->call('TestSeeder');
$this->call('PatientSeeder');
$this->call('DummySeeder');
$this->call('OrderSeeder');
}
}