D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
database
/
migrations
/
Filename :
2020_09_12_071821_create_ipd_timelines_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('ipd_timelines', function (Blueprint $table) { $table->increments('id'); $table->unsignedInteger('ipd_patient_department_id'); $table->string('title'); $table->date('date'); $table->text('description')->nullable(); $table->boolean('visible_to_person')->default(true); $table->timestamps(); $table->foreign('ipd_patient_department_id')->references('id')->on('ipd_patient_departments') ->onDelete('cascade') ->onUpdate('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::drop('ipd_timelines'); } };