anonaddy/app/Models/DeletedUsername.php
2020-09-27 15:01:17 +01:00

26 lines
464 B
PHP

<?php
namespace App\Models;
use App\Traits\HasEncryptedAttributes;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class DeletedUsername extends Model
{
use HasEncryptedAttributes, HasFactory;
public $incrementing = false;
protected $keyType = 'string';
public $timestamps = false;
protected $encrypted = [
'username'
];
protected $fillable = [
'username'
];
}