Server IP : 184.154.167.98 / Your IP : 3.128.199.62 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 : 8.2.26 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.11 * @signature 934b8db8f97d6859d013b6219957724f * @title Custom Queues, Columns * * Add custom queues, custom columns, and quick filter capabilities to the * system. */ ALTER TABLE `%TABLE_PREFIX%queue` ADD `columns_id` int(11) unsigned AFTER `parent_id`, ADD `filter` varchar(64) AFTER `config`, ADD `root` varchar(32) DEFAULT NULL AFTER `filter`, ADD `path` varchar(80) NOT NULL DEFAULT '/' AFTER `root`; DROP TABLE IF EXISTS `%TABLE_PREFIX%queue_column`; CREATE TABLE `%TABLE_PREFIX%queue_column` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `flags` int(10) unsigned NOT NULL DEFAULT '0', `name` varchar(64) NOT NULL DEFAULT '', `primary` varchar(64) NOT NULL DEFAULT '', `secondary` varchar(64) DEFAULT NULL, `filter` varchar(32) DEFAULT NULL, `truncate` varchar(16) DEFAULT NULL, `annotations` text, `conditions` text, `extra` text, PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8; DROP TABLE IF EXISTS `%TABLE_PREFIX%queue_columns`; CREATE TABLE `%TABLE_PREFIX%queue_columns` ( `queue_id` int(11) unsigned NOT NULL, `column_id` int(11) unsigned NOT NULL, `bits` int(10) unsigned NOT NULL DEFAULT '0', `sort` int(10) unsigned NOT NULL DEFAULT '1', `heading` varchar(64) DEFAULT NULL, `width` int(10) unsigned NOT NULL DEFAULT '100', PRIMARY KEY (`queue_id`, `column_id`) ) DEFAULT CHARSET=utf8; -- Finished with patch UPDATE `%TABLE_PREFIX%config` SET `value` = '934b8db8f97d6859d013b6219957724f' WHERE `key` = 'schema_signature' AND `namespace` = 'core';