summaryrefslogtreecommitdiff
path: root/sql-files
diff options
context:
space:
mode:
authorKenpachi Developer <Kenpachi.Developer@gmx.de>2020-03-22 03:31:23 +0100
committerHaru <haru@dotalux.com>2020-04-05 23:40:56 +0200
commitdb71908cd0ff6bfffd648ce76ec15d030e6d86c8 (patch)
tree890e4593194ded1558edb7c6bc83f598f3035700 /sql-files
parent413b7bbe5905bdd4ae790b8dce3ef869433e2b25 (diff)
downloadhercules-db71908cd0ff6bfffd648ce76ec15d030e6d86c8.tar.gz
hercules-db71908cd0ff6bfffd648ce76ec15d030e6d86c8.tar.bz2
hercules-db71908cd0ff6bfffd648ce76ec15d030e6d86c8.tar.xz
hercules-db71908cd0ff6bfffd648ce76ec15d030e6d86c8.zip
Add UNIQUE KEY to column `login`.`userid`
Diffstat (limited to 'sql-files')
-rw-r--r--sql-files/main.sql5
-rw-r--r--sql-files/upgrades/2020-03-22--03-09.sql24
-rw-r--r--sql-files/upgrades/index.txt1
3 files changed, 28 insertions, 2 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql
index 85ed3ec20..dcd7e543d 100644
--- a/sql-files/main.sql
+++ b/sql-files/main.sql
@@ -630,7 +630,7 @@ CREATE TABLE IF NOT EXISTS `ipbanlist` (
CREATE TABLE IF NOT EXISTS `login` (
`account_id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
- `userid` VARCHAR(23) NOT NULL DEFAULT '',
+ `userid` VARCHAR(23) NOT NULL,
`user_pass` VARCHAR(32) NOT NULL DEFAULT '',
`sex` ENUM('M','F','S') NOT NULL DEFAULT 'M',
`email` VARCHAR(39) NOT NULL DEFAULT '',
@@ -646,7 +646,7 @@ CREATE TABLE IF NOT EXISTS `login` (
`pincode` VARCHAR(4) NOT NULL DEFAULT '',
`pincode_change` INT UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`account_id`),
- KEY `name` (`userid`)
+ UNIQUE KEY `name` (`userid`)
) ENGINE=MyISAM AUTO_INCREMENT=2000000;
-- added standard accounts for servers, VERY INSECURE!!!
@@ -937,6 +937,7 @@ INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1570870260); -- 2019-10-2
INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1574463539); -- 2019-11-22--23-58.sql
INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1579817630); -- 2020-01-24--01-09.sql
INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1584838560); -- 2020-03-22--01-56.sql
+INSERT IGNORE INTO `sql_updates` (`timestamp`) VALUES (1584842940); -- 2020-03-22--03-09.sql
--
-- Table structure for table `storage`
diff --git a/sql-files/upgrades/2020-03-22--03-09.sql b/sql-files/upgrades/2020-03-22--03-09.sql
new file mode 100644
index 000000000..dbdf65c5c
--- /dev/null
+++ b/sql-files/upgrades/2020-03-22--03-09.sql
@@ -0,0 +1,24 @@
+#1584842940
+
+-- This file is part of Hercules.
+-- http://herc.ws - http://github.com/HerculesWS/Hercules
+--
+-- Copyright (C) 2019-2020 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 `login` ALTER `userid` DROP DEFAULT;
+ALTER TABLE `login` DROP INDEX `name`;
+ALTER TABLE `login` ADD CONSTRAINT `name` UNIQUE (`userid`);
+INSERT INTO `sql_updates` (`timestamp`) VALUES (1584842940);
diff --git a/sql-files/upgrades/index.txt b/sql-files/upgrades/index.txt
index 66a8849a8..fdd5fcc5a 100644
--- a/sql-files/upgrades/index.txt
+++ b/sql-files/upgrades/index.txt
@@ -61,3 +61,4 @@
2019-11-22--23-58.sql
2020-01-24--01-09.sql
2020-03-22--01-56.sql
+2020-03-22--03-09.sql