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

29 lines
716 B
PHP

<?php
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
class CreateAppointmentPreviews extends Migration
{
public function up(): void
{
$this->forge->addField([
]);
$this->forge->addKey('id', true);
$this->forge->addKey('appointment_id');
$this->forge->addKey('patient_id');
$this->forge->addKey('selected_doctor_id');
$this->forge->addKey(['requested_date', 'requested_time']);
$this->forge->addKey('status');
$this->forge->addKey('expires_at');
$this->forge->addUniqueKey('preview_token');
}
public function down(): void
{
}
// Removed migration for appointment_previews table
}