tissue/app/DeactivatedUser.php

19 lines
273 B
PHP
Raw Normal View History

2019-09-12 00:54:36 +09:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
/**
* 削除済Userのユーザー名履歴
*/
class DeactivatedUser extends Model
{
public $incrementing = false;
protected $keyType = 'string';
protected $fillable = [
'name'
];
}