【发布时间】:2021-08-14 03:15:48
【问题描述】:
如何使用特定表进行迁移? 我用命令试过了
php artisan module:make-migration alter_table_product_prices_add_supplier_price --table=product_prices Product
或
php artisan module:make-migration alter_table_product_prices_add_supplier_price Product --table=product_prices
但它不起作用
以及如何使用 laravel 模块上的步骤回滚迁移? 我用命令试过了
php artisan module:migrate-rollback --step=1 Product
或
php artisan module:migrate-rollback Product --step=1
它也不起作用
【问题讨论】:
-
当你说 Laravel 模块时,你的意思是 this?
标签: laravel laravel-migrations