D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
shaghela.online
/
database
/
migrations
/
Filename :
2021_10_06_052616_alter_bookings.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AlterBookings extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('bookings', function (Blueprint $table) { $table->unsignedBigInteger('booking_address_id')->nullable(); $table->foreign('booking_address_id')->references('id')->on('provider_address_mappings')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } }