remove: soft delete

This commit is contained in:
tokumeikoi
2021-07-01 20:06:09 +09:00
parent 0f488540f4
commit b174403a2a
8 changed files with 15 additions and 28 deletions

View File

@ -3,11 +3,9 @@
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class User extends Model
{
use SoftDeletes;
protected $table = 'v2_user';
protected $dateFormat = 'U';
protected $guarded = ['id'];