PS C:\xampp\htdocs\articles>
PS C:\xampp\htdocs\articles> $php artisan make: migration create_articles_table --create=articles
At line:1 char:6
+ $php artisan make: migration create_articles_table --create=articles
+ ~~~~~~~
Unexpected token 'artisan' in expression or statement.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : UnexpectedToken
答案 0 :(得分:1)
make:
和migration
之间不应有空格。为了创建表,您无需再次写入--create
。
在命令提示符下尝试以下命令。
php artisan make:migration create_articles_table