shell bypass 403
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateStatesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('location_states', function (Blueprint $table) {
$table->increments('id');
$table->bigInteger('country_id');
$table->string('name', 255);
$table->tinyInteger('is_default')->default(0);
$table->tinyInteger('is_active')->default(0);
$table->integer('sort_order')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('location_states');
}
}