Edit File: 2020_08_20_224526_create_roles_table.php
<?php use App\Models\Role; use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateRolesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema ::create( 'roles', function ( Blueprint $table ) { $table -> increments( 'id' ); $table -> string( 'name'); $table -> softDeletes(); $table -> timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema ::dropIfExists( 'roles' ); } }
Back to File Manager