Доброго дня!
Подскажите пожалуйста, что не так.
Создал файл миграции через
php artisan make:migrate create_articles_table
Заполнил файл:
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateArticleTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('articles', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->text('description');
$table->text('article_text');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('articles');
}
}
При выполнении команды php artisan migrate <путь до файла миграции>
выходит ошибка
[Symfony\Component\Console\Exception\RuntimeException]
Too many arguments, expected arguments "command".
Использую MAMP на macos.