diff options
author | Haru <haru@dotalux.com> | 2020-04-06 05:15:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 05:15:38 +0200 |
commit | ab640e4745afdf771709dce826aee97e0e4670fd (patch) | |
tree | e27a01e22ed179c7853da71a7a3e1b3775135655 /sql-files/upgrades | |
parent | bdb4e3f63ee1010ae5d7c43818e8b0b32cabc3d5 (diff) | |
parent | db71908cd0ff6bfffd648ce76ec15d030e6d86c8 (diff) | |
download | hercules-ab640e4745afdf771709dce826aee97e0e4670fd.tar.gz hercules-ab640e4745afdf771709dce826aee97e0e4670fd.tar.bz2 hercules-ab640e4745afdf771709dce826aee97e0e4670fd.tar.xz hercules-ab640e4745afdf771709dce826aee97e0e4670fd.zip |
Merge pull request #2666 from Kenpachi2k13/alter_login_table
Add UNIQUE KEY to column `login`.`userid`
Diffstat (limited to 'sql-files/upgrades')
-rw-r--r-- | sql-files/upgrades/2020-03-22--03-09.sql | 24 | ||||
-rw-r--r-- | sql-files/upgrades/index.txt | 1 |
2 files changed, 25 insertions, 0 deletions
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 |