Files
Aigo/database/migrations/2024_05_01_125310_create_consultations_table.php
T
2026-06-04 20:58:26 +07:00

37 lines
1.0 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('consultations', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('patient_id');
$table->unsignedBigInteger('doctor_id');
$table->date('consultation_date');
$table->time('consultation_time');
$table->string('location');
$table->string('consultation_status')->default('pending');
$table->timestamps();
$table->foreign('patient_id')->references('id')->on('users')->onDelete('cascade');
$table->foreign('doctor_id')->references('id')->on('users')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('consultations');
}
};