Server IP : 184.154.167.98 / Your IP : 13.59.218.229 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/mesa/include/upgrader/streams/core/ |
Upload File : |
/** * @version v1.8.1 * @signature 934954de8914d9bd2bb8343e805340ae * @title Various schema improvements and bug fixes * */ -- [#317](https://github.com/osTicket/osTicket-1.8/issues/317) ALTER TABLE `%TABLE_PREFIX%faq` CHANGE `created` `created` datetime NOT NULL, CHANGE `updated` `updated` datetime NOT NULL; -- [#328](https://github.com/osTicket/osTicket-1.8/issues/328) UPDATE `%TABLE_PREFIX%filter_rule` SET `how` = 'equal' WHERE `how` IS NULL; -- [#331](https://github.com/osTicket/osTicket-1.8/issues/331) -- Previously there was no primary key on the %ticket_email_info table, so -- clean up any junk records before adding one ALTER TABLE `%TABLE_PREFIX%ticket_email_info` DROP INDEX `message_id`, ADD INDEX `email_mid` (`email_mid`); ALTER TABLE `%TABLE_PREFIX%ticket_email_info` CHANGE `message_id` `thread_id` int(11) unsigned NOT NULL; -- [#386](https://github.com/osTicket/osTicket-1.8/issues/386) UPDATE `%TABLE_PREFIX%email_template` SET `body` = REPLACE(`body`, '%{recipient}', '%{recipient.name}'); -- Change EndUser link to be recipient specific UPDATE `%TABLE_PREFIX%email_template` SET `body` = REPLACE(`body`, '%{ticket.client_link}', '%{recipient.ticket_link}'); -- Add inline flag and drop ref_type ALTER TABLE `%TABLE_PREFIX%ticket_attachment` ADD `inline` tinyint(1) NOT NULL default 0 AFTER `ref_id`, DROP `ref_type`; ALTER TABLE `%TABLE_PREFIX%ticket_thread` ADD `user_id` int(11) unsigned not null default 0 AFTER `staff_id`; ALTER TABLE `%TABLE_PREFIX%ticket` ADD `email_id` int(11) unsigned not null default 0 AFTER `team_id`, CHANGE `ticketID` `number` varchar(20); ALTER TABLE `%TABLE_PREFIX%ticket_collaborator` ADD`created` datetime NOT NULL AFTER `role`; -- Finished with patch UPDATE `%TABLE_PREFIX%config` SET `value` = '934954de8914d9bd2bb8343e805340ae' WHERE `key` = 'schema_signature' AND `namespace` = 'core';