chore(accounts): remove legacy-era accounts sources

This commit is contained in:
Darko Gjorgjijoski
2026-08-20 23:48:22 +02:00
parent bc213966ff
commit 973fda1df6
42 changed files with 0 additions and 2776 deletions
@@ -1,21 +0,0 @@
<?php
namespace App\Domains\Accounts\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class UserSetting extends Model
{
protected $table = 'user_settings';
use HasFactory;
protected $guarded = ['id'];
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
}