I study Laravel. I create a migration, enter the fields that need to be created. Then I start migrations, errors come out, the table does not create. What is the problem? DB is created. Openserver. 
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateArticlesTable6 extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('articles', function (Blueprint $table) { $table->increments('id'); // id INT auto_increment PRIMARY KEY $table->string('name',100); //Varchar, 100 $table->text('text'); //text $table->string('img',255); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('articles'); } }