summaryrefslogtreecommitdiff
path: root/sql-files
diff options
context:
space:
mode:
authorKenpachi Developer <Kenpachi.Developer@gmx.de>2019-11-23 00:02:58 +0100
committerKenpachi Developer <Kenpachi.Developer@gmx.de>2019-11-23 12:59:47 +0100
commitfc341155d44d329ca30aa429f75ab1609902b04e (patch)
tree6b6c1b7649afed56fe1d2138e79673c7ef7396e9 /sql-files
parent75ae0182f850e213d50832c979312aa560152628 (diff)
downloadhercules-fc341155d44d329ca30aa429f75ab1609902b04e.tar.gz
hercules-fc341155d44d329ca30aa429f75ab1609902b04e.tar.bz2
hercules-fc341155d44d329ca30aa429f75ab1609902b04e.tar.xz
hercules-fc341155d44d329ca30aa429f75ab1609902b04e.zip
Fix for https://github.com/HerculesWS/Hercules/issues/2349.
ipban_log() only inserts the first 3 octets of an IP and an asterisk for last one, so we can set the columns length to 13.
Diffstat (limited to 'sql-files')
-rw-r--r--sql-files/main.sql3
-rw-r--r--sql-files/upgrades/2019-11-22--23-58.sql23
-rw-r--r--sql-files/upgrades/index.txt1
3 files changed, 26 insertions, 1 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql
index c4e5afaf3..6eb78bb07 100644
--- a/sql-files/main.sql
+++ b/sql-files/main.sql
@@ -617,7 +617,7 @@ CREATE TABLE IF NOT EXISTS `inventory` (
--
CREATE TABLE IF NOT EXISTS `ipbanlist` (
- `list` VARCHAR(255) NOT NULL DEFAULT '',
+ `list` VARCHAR(13) NOT NULL DEFAULT '',
`btime` DATETIME NULL,
`rtime` DATETIME NULL,
`reason` VARCHAR(255) NOT NULL DEFAULT '',
@@ -934,6 +934,7 @@ INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1557414445); -- 2019-05-0
INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1565293394); -- 2019-08-08--19-43.sql
INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1570309293); -- 2019-10-05--19-01.sql
INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1570870260); -- 2019-10-21--14-21.sql
+INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1574463539); -- 2019-11-22--23-58.sql
--
-- Table structure for table `storage`
diff --git a/sql-files/upgrades/2019-11-22--23-58.sql b/sql-files/upgrades/2019-11-22--23-58.sql
new file mode 100644
index 000000000..8d02fdfab
--- /dev/null
+++ b/sql-files/upgrades/2019-11-22--23-58.sql
@@ -0,0 +1,23 @@
+#1574463539
+
+-- This file is part of Hercules.
+-- http://herc.ws - http://github.com/HerculesWS/Hercules
+--
+-- Copyright (C) 2019 Hercules Dev Team
+--
+-- Hercules is free software: you can redistribute it and/or modify
+-- it under the terms of the GNU General Public License as published by
+-- the Free Software Foundation, either version 3 of the License, or
+-- (at your option) any later version.
+--
+-- This program is distributed in the hope that it will be useful,
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+-- GNU General Public License for more details.
+--
+-- You should have received a copy of the GNU General Public License
+-- along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+ALTER TABLE `ipbanlist` MODIFY `list` VARCHAR(13) NOT NULL DEFAULT '';
+INSERT INTO `sql_updates` (`timestamp`) VALUES (1574463539);
diff --git a/sql-files/upgrades/index.txt b/sql-files/upgrades/index.txt
index 2db750247..f7fc2ac79 100644
--- a/sql-files/upgrades/index.txt
+++ b/sql-files/upgrades/index.txt
@@ -58,3 +58,4 @@
2019-08-08--19-43.sql
2019-10-05--19-01.sql
2019-10-12--14-21.sql
+2019-11-22--23-58.sql