// при переносе этого файла я получил вышеуказанную ошибку
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class SubjectOrderForExam extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('subjectOrderingForExam', function(Blueprint $table)
{
$table->integer('id', true);
$table->integer('subjectId');
$table->integer('classId');
$table->integer('sectionId');
$table->string('subjectName', 255);
$table->integer('orderingNo');
$table->enum('isDelete', ['0','1'])->default('0');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('subjectOrderingForExam');
}
}