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