我在迁移中将软删除列添加到我的表中:
public function up()
{
Schema::table("users", function ($table) {
$table->softDeletes();
});
}
但是,如果我回滚迁移,如何在我的down()
函数中删除这些?是否有内置方法来执行此操作,或者我只是手动删除添加的列?
答案 0 :(得分:61)
在您的迁移课程上:
identity
照亮\数据库\架构\ Blueprint.php:
public function down()
{
Schema::table("users", function ($table) {
$table->dropSoftDeletes();
});
}
自Laravel 5.5以来,可以找到此信息in the documentation。