D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
hms.dentostock.com
/
database
/
migrations
/
Filename :
2020_10_30_043500_add_route_in_modules_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::table('modules', function (Blueprint $table) { $table->string('route')->nullable()->after('is_active'); }); } /** * Reverse the migrations. */ public function down(): void { if (Schema::hasColumn('modules', 'route')) { Schema::table('modules', function (Blueprint $table) { $table->dropColumn('route'); }); } } };