CharQuest_History.php 572 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Models\Char;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CharQuest_History extends Model
  5. {
  6. protected $connection = "Char";
  7. protected $table = "Table_CharQuest_History";
  8. protected $primaryKey = 'RecId'; // Используем RecId как первичный ключ
  9. public $incrementing = false; // RecId не автоинкрементный
  10. protected $dates = [];
  11. protected $fillable =
  12. [
  13. "Owner",
  14. "Slot",
  15. "Deleted",
  16. "RecId",
  17. "AccomplishDate",
  18. "Count"
  19. ];
  20. public $timestamps = false;
  21. }