This commit is contained in:
2018-10-28 21:31:10 -05:00
parent af382aa1eb
commit 84a9e2f83a
3 changed files with 14 additions and 2 deletions

View File

@@ -16,7 +16,17 @@ class User extends Authenticatable
* @var array
*/
protected $fillable = [
'name', 'email', 'avatar', 'owner_hash', 'character_id', 'expires_in', 'access_token', 'refresh_token', 'user_type',
'name',
'email',
'avatar',
'owner_hash',
'character_id',
'inserted_at',
'expires_in',
'access_token',
'refresh_token',
'user_type',
'scopes',
];
protected $table = 'users';