作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 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/
我是一名优秀的程序员,十分优秀!