gpt4 book ai didi

php - 如何在迁移中从表中删除 softDeletes

转载 作者:IT王子 更新时间:2023-10-29 01:00:21 26 4
gpt4 key购买 nike

我正在迁移中将软删除列添加到我的表中:

public function up()
{
Schema::table("users", function ($table) {
$table->softDeletes();
});
}

但是,如果我回滚迁移,如何在我的 down() 函数中删除这些?是否有内置方法可以执行此操作,还是我只是手动删除添加的列?

最佳答案

关于你的迁移类:

public function down()
{
Schema::table("users", function ($table) {
$table->dropSoftDeletes();
});
}

Illuminate\Database\Schema\Blueprint.php:

public function dropSoftDeletes()
{
$this->dropColumn('deleted_at');
}

从 Laravel 5.5 开始,可以找到此信息 in the documentation .

关于php - 如何在迁移中从表中删除 softDeletes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37532131/

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