使用时,我只想运行一个迁移文件
$php artisan migrate --path=/database/migrations/2019_03_20_101338_create_calendars_table.php
我收到此错误
Whoops \ Exception \ ErrorException:Illuminate \ Filesystem \ Filesystem :: requireOnce():无法打开所需的'C:\ xampp \ htdocs \ project / C:/ Program Files / Git / database / migrations / 2019_03_20_10 1338_create_calendars_table.php'(include_path ='C:\ xampp \ php \ PEAR')
答案 0 :(得分:0)
从URI中删除第一个斜杠,第一个斜杠表示URI是绝对的而不是相对的。
$php artisan migrate --path=database/migrations/2019_03_20_101338_create_calendars_table.php