shell bypass 403
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUserBlogsTable extends Migration
{
public function up()
{
Schema::create('user_blogs', function (Blueprint $table) {
$table->id();
$table->integer('blog_id');
$table->integer('user_id');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('user_blogs');
}
}