mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Implemented new type: mail
* display and link clientside mails to other types and events * fixed favorites menu for new types * fixed sorting column triggered spells in enchantment listview * some misc cleanups
This commit is contained in:
21
setup/updates/1581549222_01.sql
Normal file
21
setup/updates/1581549222_01.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
DROP TABLE IF EXISTS `aowow_mailtemplate`;
|
||||
DROP TABLE IF EXISTS `aowow_mails`;
|
||||
|
||||
CREATE TABLE `aowow_mails` (
|
||||
`id` smallint(5) unsigned NOT NULL,
|
||||
`subject_loc0` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`subject_loc2` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`subject_loc3` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`subject_loc4` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`subject_loc6` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`subject_loc8` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`text_loc0` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`text_loc2` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`text_loc3` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`text_loc4` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`text_loc6` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`text_loc8` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
UPDATE aowow_dbversion SET `sql` = CONCAT(IFNULL(`sql`, ''), ' mails');
|
||||
Reference in New Issue
Block a user