mirror of
https://github.com/brian8544/turtle-wow.git
synced 2025-01-05 14:24:34 +00:00
26 lines
509 B
PHP
26 lines
509 B
PHP
<?php
|
|
|
|
namespace App\Models\auth;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CharacterTransfer extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $connection = 'mysql2';
|
|
protected $table = 'character_transfers';
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'source_realm_id',
|
|
'source_account_id',
|
|
'source_character_guid',
|
|
'data',
|
|
'target_realm_id',
|
|
'target_account_id',
|
|
'status',
|
|
];
|
|
}
|