D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
shaghela.online
/
database
/
migrations
/
Filename :
2023_01_04_071523_alter_booking_package.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AlterBookingPackage extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('bookings', function (Blueprint $table) { $table->longText('booking_package')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } }