diff options
author | Haru <haru@dotalux.com> | 2019-11-17 16:54:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-17 16:54:11 +0100 |
commit | 1f000882ca8ce9d4bb48757b81848b8b6a98ad0e (patch) | |
tree | 34855b2936e1197385417dca7905b7a8fd9c97d5 /sql-files/upgrades | |
parent | 76c5cbecee3441a8dbd1f729e09db78af94be056 (diff) | |
parent | 8b361e2b31d9926a83befb012a27edc4c6ee59d1 (diff) | |
download | hercules-1f000882ca8ce9d4bb48757b81848b8b6a98ad0e.tar.gz hercules-1f000882ca8ce9d4bb48757b81848b8b6a98ad0e.tar.bz2 hercules-1f000882ca8ce9d4bb48757b81848b8b6a98ad0e.tar.xz hercules-1f000882ca8ce9d4bb48757b81848b8b6a98ad0e.zip |
Merge pull request #2560 from dastgirp/logs/item
Fixes some confusion in logs and added new log type
Diffstat (limited to 'sql-files/upgrades')
-rw-r--r-- | sql-files/upgrades/2019-10-12--14-21.sql | 23 | ||||
-rw-r--r-- | sql-files/upgrades/index.txt | 1 |
2 files changed, 24 insertions, 0 deletions
diff --git a/sql-files/upgrades/2019-10-12--14-21.sql b/sql-files/upgrades/2019-10-12--14-21.sql new file mode 100644 index 000000000..bd885a874 --- /dev/null +++ b/sql-files/upgrades/2019-10-12--14-21.sql @@ -0,0 +1,23 @@ +#1570870260 + +-- 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 `picklog` MODIFY `type` enum('M','P','L','T','V','S','N','C','A','R','G','E','B','O','I','X','D','U','K','Y','Z','W','Q','J','H','@','0','1','2', '3') NOT NULL DEFAULT 'P', +INSERT INTO `sql_updates` (`timestamp`) VALUES (1570870260); diff --git a/sql-files/upgrades/index.txt b/sql-files/upgrades/index.txt index 10eb30762..2db750247 100644 --- a/sql-files/upgrades/index.txt +++ b/sql-files/upgrades/index.txt @@ -57,3 +57,4 @@ 2019-05-09--18-07.sql 2019-08-08--19-43.sql 2019-10-05--19-01.sql +2019-10-12--14-21.sql |