Server IP : 184.154.167.98 / Your IP : 18.222.161.119 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.17 * @signature e2b4e5cbb8b77e50a8f44bdcf09defc7 * @title Add plugin multi-instance support * */ ALTER TABLE `%TABLE_PREFIX%plugin` ADD `notes` text AFTER `version`, ADD UNIQUE (`install_path`); CREATE TABLE `%TABLE_PREFIX%plugin_instance` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `plugin_id` int(11) unsigned NOT NULL, `flags` int(10) NOT NULL DEFAULT 0, `name` varchar(128) NOT NULL DEFAULT '', `config` text DEFAULT NULL, `notes` text DEFAULT NULL, `created` datetime NOT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `plugin_id` (`plugin_id`) ) DEFAULT CHARSET=utf8; UPDATE `%TABLE_PREFIX%config` SET `value` = 'e2b4e5cbb8b77e50a8f44bdcf09defc7', updated = NOW() WHERE `key` = 'schema_signature' AND `namespace` = 'core';