From c0936ee17946b2917f218d4b96c6bcede64f5387 Mon Sep 17 00:00:00 2001 From: lush0n3 <87586904+lush0n3@users.noreply.github.com> Date: Fri, 25 Feb 2022 03:39:28 -0300 Subject: [PATCH] Increase sender length to 60 If the players are saved with a rockstar license, forty is very little, so when giving invoices, there is an error in the notifications. --- [SQL]/legacy.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[SQL]/legacy.sql b/[SQL]/legacy.sql index 39aa4d3d..12377e44 100644 --- a/[SQL]/legacy.sql +++ b/[SQL]/legacy.sql @@ -91,7 +91,7 @@ CREATE TABLE `addon_inventory_items` ( CREATE TABLE `billing` ( `id` int(11) NOT NULL, `identifier` varchar(60) NOT NULL, - `sender` varchar(40) NOT NULL, + `sender` varchar(60) NOT NULL, `target_type` varchar(50) NOT NULL, `target` varchar(40) NOT NULL, `label` varchar(255) NOT NULL,