{Ninja-Shell}
Home
Info
Upload
Command
View /etc/passwd
cPanel Reset Password
Filename: ///var/www/bfti-website/database//migrations/2024_03_11_094707_create_messages_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::create('messages', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('category')->nullable(); $table->string('about')->nullable(); $table->string('designation')->nullable(); $table->string('address')->nullable(); $table->longText('description')->nullable(); $table->boolean('status')->default(true); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('messages'); } };
./Ninja\.