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

This commit is contained in:
shibafu
2019-09-12 00:54:36 +09:00
parent a71aa0c3b6
commit f132955be7
10 changed files with 164 additions and 1 deletions

18
app/DeactivatedUser.php Normal file
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'
];
}