doctor-appointment-system/app/Database/Migrations/2026-05-05-000002_UseEnumStatusForAppointmentPreviews.php
2026-05-08 12:22:08 +05:30

24 lines
619 B
PHP

<?php
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
class UseEnumStatusForAppointmentPreviews extends Migration
{
public function up(): void
{
$this->forge->modifyColumn('appointment_previews', [
'status' => [
'name' => 'status',
'type' => 'ENUM',
'constraint' => ['draft', 'viewed', 'selected', 'booked', 'expired', 'cancelled'],
'default' => 'draft',
'null' => false,
],
]);
}
// Removed migration for appointment_previews table
}