feat: add recovery codes (#2120)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\User;
|
||||
|
||||
use App\Models\ModelBinding as Model;
|
||||
|
||||
class RecoveryCode extends Model
|
||||
{
|
||||
protected $table = 'recovery_codes';
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'account_id',
|
||||
'user_id',
|
||||
'recovery',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user