如何从 laravel 中的文件夹迁移中正确删除 table? (使用 artisan 命令)
How to properly remove a table from folder migration in laravel? (With artisan command)
当您通过示例使用命令时:
php artisan make:migration create_tasks_table --create=tasks
它在文件
中创建一个 table 文件和依赖项 link
\vendor\composer\autoload_classmap.php
我怎样才能做类似的事情?
php artisan remove:table:file create_Task_table
artisan
控制台中不存在这样的命令。但是,您可以创建一个这样的命令,也可以只删除迁移并在控制台中执行以下命令。
composer dump-autoload
当您通过示例使用命令时:
php artisan make:migration create_tasks_table --create=tasks
它在文件
中创建一个 table 文件和依赖项 link\vendor\composer\autoload_classmap.php
我怎样才能做类似的事情?
php artisan remove:table:file create_Task_table
artisan
控制台中不存在这样的命令。但是,您可以创建一个这样的命令,也可以只删除迁移并在控制台中执行以下命令。
composer dump-autoload