我想在运行时只运行一个迁移文件
$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')
从URI中删除第一个斜杠,第一个斜杠表示URI是绝对的而不是相对的。
$php artisan migrate --path=database/migrations/2019_03_20_101338_create_calendars_table.php