fixing game history and removing comments

This commit is contained in:
Edd
2026-01-03 16:59:14 +00:00
parent 3ba3487f81
commit b6845ee0ea
8 changed files with 453 additions and 3021 deletions
+1 -2
View File
@@ -9,12 +9,11 @@ class CoinTransactionType extends Model
{
use HasFactory;
// FIX: Disable auto-timestamps because the table doesn't have updated_at/created_at columns
public $timestamps = false;
protected $fillable = [
'name',
'type',
'description' // Include description if your table has it
'description'
];
}