summaryrefslogtreecommitdiff
path: root/sql-files
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-08-04 00:24:03 -0300
committerJesusaves <cpntb1@ymail.com>2018-08-04 00:24:03 -0300
commit86cea497593cd26369d86d184e38c192909d181c (patch)
tree82a8a3231acfab27e1bd2b02251155e96e123e77 /sql-files
parent86676514e1ad23f9a5279a6cddec5f6c1d5ec358 (diff)
downloadserverdata-86cea497593cd26369d86d184e38c192909d181c.tar.gz
serverdata-86cea497593cd26369d86d184e38c192909d181c.tar.bz2
serverdata-86cea497593cd26369d86d184e38c192909d181c.tar.xz
serverdata-86cea497593cd26369d86d184e38c192909d181c.zip
Rewrite query, and fish a water bottle >.<
Diffstat (limited to 'sql-files')
-rw-r--r--sql-files/upgrades/2018-08-03--11-37.sql6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql-files/upgrades/2018-08-03--11-37.sql b/sql-files/upgrades/2018-08-03--11-37.sql
index e8908e899..1dde29fd6 100644
--- a/sql-files/upgrades/2018-08-03--11-37.sql
+++ b/sql-files/upgrades/2018-08-03--11-37.sql
@@ -18,7 +18,7 @@
-- 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 `quest` MODIFY `count1` INT(11) UNSIGNED NOT NULL DEFAULT '0';
-ALTER TABLE `quest` MODIFY `count2` INT(11) UNSIGNED NOT NULL DEFAULT '0';
-ALTER TABLE `quest` MODIFY `count3` INT(11) UNSIGNED NOT NULL DEFAULT '0';
+ALTER TABLE `quest` CHANGE `count1` `count1` INT(11) UNSIGNED NOT NULL DEFAULT '0';
+ALTER TABLE `quest` CHANGE `count2` `count2` INT(11) UNSIGNED NOT NULL DEFAULT '0';
+ALTER TABLE `quest` CHANGE `count3` `count3` INT(11) UNSIGNED NOT NULL DEFAULT '0';
INSERT INTO `sql_updates` (`timestamp`) VALUES (1533307076);