24 lines
619 B
PHP
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
|
|
}
|