blacklist modification

This commit is contained in:
2019-12-01 02:13:40 -06:00
parent 18239d4b79
commit 4b3f4e84a7
2 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ use Log;
use App\Library\Lookups\NewLookupHelper;
//Models
use App\Models\Character\BlacklistUser;
use App\Models\Blacklist\BlacklistUser;
use App\Models\User\User;
use App\Models\User\UserRole;
use App\Models\User\UserPermission;

View File

@@ -1,13 +1,13 @@
<?php
namespace App\Models\Character;
namespace App\Models\Blacklist;
use Illuminate\Database\Eloquent\Model;
class BlacklistUser extends Model
{
//Table Name
public $table = 'blacklisted_characters';
public $table = 'alliance_blacklist';
//Timestamps
public $timestamps = true;