fix(es_extended): widen billing.target to hold an identifier

The column is varchar(40) but esx_billing writes an identifier into it, and
those are 46 characters once multicharacter is on, so the insert fails with
1406 and the handler dies before notifying either player. The other two
identifier columns in the same table are already varchar(60).
This commit is contained in:
Selt
2026-07-28 03:06:20 +02:00
parent 5354e278de
commit 6c50d22615
2 changed files with 42 additions and 1 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ CREATE TABLE `billing` (
`identifier` varchar(60) NOT NULL,
`sender` varchar(60) NOT NULL,
`target_type` varchar(50) NOT NULL,
`target` varchar(40) NOT NULL,
`target` varchar(60) NOT NULL,
`label` varchar(255) NOT NULL,
`amount` int(11) NOT NULL
) ENGINE=InnoDB;