mirror of
https://github.com/anonaddy/anonaddy
synced 2026-04-25 17:15:29 +02:00
28 lines
474 B
PHP
28 lines
474 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;
|
|
use HasFactory;
|
|
|
|
public $incrementing = false;
|
|
|
|
protected $keyType = 'string';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $encrypted = [
|
|
'username',
|
|
];
|
|
|
|
protected $fillable = [
|
|
'username',
|
|
];
|
|
}
|