From 1cadd040921e0ab15b8ab7f2dfc211471e5129fc Mon Sep 17 00:00:00 2001 From: VladMordock Date: Mon, 18 Nov 2019 18:26:14 +0100 Subject: [PATCH] Fix for error when MySQL is running in TRADITIONAL mode https://www.got-it.ai/solutions/sqlquerychat/sql-help/data-manipulation/handling-overflow-and-out-of-range-errors-in-mysql/ --- 03_MySQL/m1081_perun.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_MySQL/m1081_perun.sql b/03_MySQL/m1081_perun.sql index b068485..4655f3f 100644 --- a/03_MySQL/m1081_perun.sql +++ b/03_MySQL/m1081_perun.sql @@ -115,7 +115,7 @@ CREATE TABLE IF NOT EXISTS `pe_LogStats` ( `pe_LogStats_playerid` bigint(20) DEFAULT NULL, `pe_LogStats_typeid` int(11) DEFAULT NULL, `pe_LogStats_masterslot` int(11) DEFAULT NULL, - `pe_LogStats_seat` int(10) UNSIGNED DEFAULT NULL, + `pe_LogStats_seat` int(10) DEFAULT NULL, `ps_kills_X` int(11) UNSIGNED NOT NULL DEFAULT '0', `ps_pvp` int(11) UNSIGNED NOT NULL DEFAULT '0', `ps_deaths` int(11) UNSIGNED NOT NULL DEFAULT '0',