CharBase.php 434 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Models\Char;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. class CharBase extends Model
  6. {
  7. protected $connection = "Char";
  8. protected $table = "Table_CharBase";
  9. protected $primaryKey = "DBKey";
  10. protected $dates = [];
  11. protected $fillable =
  12. [
  13. "DBKey", "Account", "Name"
  14. ];
  15. public $timestamps = false;
  16. }