Change to TEXT instead of VARCHAR. As suggested by @gpedro

This commit is contained in:
tobi132
2019-07-18 20:06:04 +02:00
parent d79ae8e927
commit 415b31e1b4
2 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
<?php
$db->exec('ALTER TABLE `' . TABLE_PREFIX . 'monsters` MODIFY `loot` VARCHAR(10000) NOT NULL;');
$db->exec('ALTER TABLE `' . TABLE_PREFIX . 'monsters` MODIFY `loot` text NOT NULL;');