You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
638 B
23 lines
638 B
/**
|
|
* @signature 1ee831c854fe9f35115a3e672916bb91
|
|
* @version v1.10.0
|
|
* @title Make editable content translatable
|
|
*
|
|
* This patch adds support for translatable administratively editable
|
|
* content, such as help topic names, department and group names, site page
|
|
* and faq content, etc.
|
|
*/
|
|
|
|
DROP TABLE `%TABLE_PREFIX%timezone`;
|
|
|
|
ALTER TABLE `%TABLE_PREFIX%staff`
|
|
DROP `timezone_id`,
|
|
DROP `daylight_saving`;
|
|
|
|
ALTER TABLE `%TABLE_PREFIX%user_account`
|
|
DROP `timezone_id`,
|
|
DROP `dst`;
|
|
|
|
DELETE FROM `%TABLE_PREFIX%config`
|
|
WHERE `key` IN ('enable_daylight_saving', 'default_timezone_id')
|
|
AND `namespace` = 'core';
|