Files
myocardial/database/migrations/2023_08_11_065201_create_heartwaves_table.php
T
2026-06-23 13:28:38 +07:00

36 lines
788 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.
*
* @return void
*/
public function up()
{
Schema::create('heartwaves', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->uuid('patient_id');
$table->string('heartwave')->nullable();
$table->timestamps();
$table->foreign('patient_id')->references('id')->on('patients')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('heartwaves');
}
};