Soft Delete all records from a table in laravel 5(软删除laravel 5中表中的所有记录)
问题描述
有没有办法软删除表中的所有现有行?我试过( Prospect::delete(); )它永久删除了所有行,但它在软删除中不起作用.
Is there any way to soft delete all the existing rows in a table? I have tried ( Prospect::delete(); ) it deleted all the rows permanently, But it doesn't work in soft deleting.
推荐答案
如果您使用的是 4.2 之前的 Laravel 框架,那么您可以将模型中的软删除设置为,
If you are using Laravel framework older than 4.2, then you can set the soft delete in your model as,
class ModelName extends Eloquent {
protected $table = 'table_name';
protected $softDelete = true;
}
如果您使用的是 Laravel 框架 4.2,那么您可以将模型中的软删除设置为,
If you are using Laravel framework 4.2, then you can set the soft delete in your model as,
use IlluminateDatabaseEloquentSoftDeletingTrait;
class ModelName extends Eloquent {
use SoftDeletingTrait;
protected $table = 'table_name';
}
如果您使用的是4.2以上的Laravel框架,那么您可以将模型中的软删除设置为,
If you are using Laravel framework above 4.2, then you can set the soft delete in your model as,
use IlluminateDatabaseEloquentSoftDeletes;
class ModelName extends Eloquent {
use SoftDeletes;
protected $table = 'table_name';
}
我希望你使用的是 Laravel 5.所以你可以使用第三种方法.
I hope you are using Laravel 5. So you can use the third method.
这篇关于软删除laravel 5中表中的所有记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:软删除laravel 5中表中的所有记录
基础教程推荐
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01