CharQuest_History.php 564 B

1234567891011121314151617181920212223
  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. "Owner",
  13. "Slot",
  14. "Deleted",
  15. "RecId",
  16. "AccomplishDate",
  17. "Count"
  18. ];
  19. public $timestamps = false;
  20. }