CharBase.php 395 B

123456789101112131415161718192021
  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 $guarded =
  12. [
  13. "Account",
  14. "DBKey"
  15. ];
  16. public $timestamps = false;
  17. }