shell bypass 403

UnknownSec Shell


name : 2020_05_02_092009_create_blogs_table.php
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;


class CreateBlogsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('blogs', function (Blueprint $table) {
            $table->increments('id');
            $table->unsignedInteger('user_id');
            $table->string('title');
            $table->string('slug');
            $table->longText('description');
            $table->boolean('status')->default(1);
            $table->string('image');
            $table->string('thumbnail');
            $table->integer('viewed')->default(0);
            $table->string('authored_date');

            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('blogs');
    }
}

© 2025 UnknownSec
afwwrfwafr45458465
Password