D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
database
/
migrations
/
Filename :
2020_11_24_131253_create_notifications_table.php
back
Copy
<?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('notifications', function (Blueprint $table) { $table->increments('id'); $table->integer('type'); $table->integer('notification_for'); $table->unsignedBigInteger('user_id'); $table->string('title'); $table->text('text')->nullable(); $table->text('meta')->nullable(); $table->timestamp('read_at')->nullable(); $table->timestamps(); $table->foreign('user_id')->references('id')->on('users') ->onUpdate('cascade') ->onDelete('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('notifications'); } };