mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 01:37:02 +00:00
* In beggining bad news: at 3.3.3 switch has been forgoted item_instance.data field chnage. In result items with texts (mail copy in to inventory, some other) lost text content. * That why in current commit item_text droped without convertion. In result all itesm with texts will lost text. Sorry for this as i think small porblem :( * Now text stored in item itself.
9 lines
286 B
SQL
9 lines
286 B
SQL
ALTER TABLE character_db_version CHANGE COLUMN required_9692_02_characters_mail required_9702_01_characters_item bit;
|
|
|
|
|
|
ALTER TABLE `item_instance`
|
|
ADD COLUMN `text` longtext AFTER `data`;
|
|
|
|
-- indexes in any case broken and lost after 3.3.3 switch.
|
|
DROP TABLE IF EXISTS `item_text`;
|
|
|