shell bypass 403
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateErrorLogTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('error_logs', function (Blueprint $table) {
$table->id();
$table->string('subject');
$table->tinyInteger('type')->default(1);
$table->string('url')->nullable();
$table->string('ip')->nullable();
$table->string('agent')->nullable();
$table->integer('user_id')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}