D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
database
/
migrations
/
Filename :
2020_05_12_075825_create_sms_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('sms', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('send_to'); $table->string('phone_number'); $table->text('message'); $table->unsignedBigInteger('send_by'); $table->timestamps(); $table->foreign('send_to')->references('id')->on('users') ->onDelete('cascade') ->onUpdate('cascade'); $table->foreign('send_by')->references('id')->on('users') ->onDelete('cascade') ->onUpdate('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('sms'); } };