45 lines
1.1 KiB
PHP
45 lines
1.1 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.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('patients', function (Blueprint $table) {
|
|
$table->uuid('id')->primary();
|
|
$table->uuid('user_id');
|
|
$table->string('fullname');
|
|
$table->string('address');
|
|
$table->string('phone');
|
|
$table->string('emergency_phone');
|
|
$table->enum('gender', ['male', 'female']);
|
|
$table->integer('age');
|
|
|
|
$table->string('device_id')->nullable();
|
|
$table->string('condition')->default('normal');
|
|
|
|
$table->timestamps();
|
|
|
|
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('patients');
|
|
}
|
|
};
|