rejuvallife/database/migrations/2024_04_04_180801_adding_notes_te.php
2024-10-25 01:02:11 +05:00

32 lines
747 B
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('patient_notes', function (Blueprint $table) {
$table->id();
$table->text('note')->nullable();
$table->text('note_type')->nullable();
$table->unsignedBigInteger('patient_id')->nullable();
$table->foreign('patient_id')->references('id')->on('patients');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};