アカウント削除画面の追加

This commit is contained in:
shibafu
2019-11-16 00:26:38 +09:00
parent a71aa0c3b6
commit f132955be7
10 changed files with 164 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
/**
* 削除済Userのユーザー名履歴
*/
class DeactivatedUser extends Model
{
public $incrementing = false;
protected $keyType = 'string';
protected $fillable = [
'name'
];
}