29 lines
716 B
PHP
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
|
|
}
|