- Add OpenSpec experimental workflow with commands (opsx-apply, opsx-archive, opsx-explore, opsx-propose) - Add Serena memory system for project context - Implement User API (UserController, UserModel, routes) - Add Specimen delete endpoint - Update Test definitions and Routes - Sync API documentation (OpenAPI) - Archive completed 2026-03-08-backend-specs change
23 lines
518 B
PHP
23 lines
518 B
PHP
<?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');
|
|
}
|
|
} |