| 1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Models\Char;
- use Illuminate\Database\Eloquent\Model;
- class CharQuest_History extends Model
- {
- protected $connection = "Char";
- protected $table = "Table_CharQuest_History";
- protected $primaryKey = 'RecId'; // Используем RecId как первичный ключ
- public $incrementing = false; // RecId не автоинкрементный
- protected $dates = [];
- protected $fillable =
- [
- "Owner",
- "Slot",
- "Deleted",
- "RecId",
- "AccomplishDate",
- "Count"
- ];
- public $timestamps = false;
- }
|