gpt4 book ai didi

laravel - 如何在 laravel 模块中进行迁移?

转载 作者:行者123 更新时间:2023-12-05 03:00:10 25 4
gpt4 key购买 nike

在我的 Laravel 项目中,我使用 nwidart 包来制作模块。现在我想将 deleted_at 列添加到现有模型中。我应该在我的模块中进行新的迁移。我该怎么做?

这是包文档: https://nwidart.com/laravel-modules/v4/advanced-tools/artisan-commands

我想要这样的模块:

php artisan make:migration add_soft_deletes_to_user_table --table="users"

最佳答案

试试这个命令:php artisan module:make-migration add_soft_deletes_to_users_table <ModuleName> .

然后不要忘记使用 Illuminate\Database\Eloquent\SoftDeletes你的特质User模型。

use Illuminate\Database\Eloquent\SoftDeletes;

class User extends Model {

use SoftDeletes;

}

关于laravel - 如何在 laravel 模块中进行迁移?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57122766/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com