About
Logout
Mail
Address Book
Settings
Logout
Plugin Manager database versioning: Plugin "plugin_manager"
Plugin Manager has detected required missing adjustments in your database. The following commands will be executed against your database
mysql://corec173_marcos:***masked***@localhost/corec173_mail:
CREATE TABLE IF NOT EXISTS `plugin_manager` ( `id` int(10) NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `conf` text NOT NULL, `value` text, `type` text, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `user_identities_index` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `system` ( `name` varchar(64) NOT NULL, `value` mediumtext, PRIMARY KEY(`name`) ); INSERT INTO `system` (name, value) VALUES ('myrc_plugin_manager', 'initial'); ALTER TABLE `plugin_manager` ADD CONSTRAINT `user_id_fk_plugin_manager` FOREIGN KEY (`user_id`) REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE; ALTER TABLE `plugin_manager` DROP FOREIGN KEY `user_id_fk_plugin_manager` ; ALTER TABLE `plugin_manager` DROP `user_id`; ALTER TABLE `plugin_manager` ENGINE=MyISAM; UPDATE `system` SET `value`='initial|20131209' WHERE `name`='myrc_plugin_manager';
I have a recent database backup. I understand the code and I agree to execute it.
I will take care of the necessary
database adjustments
by myself. I'm aware that MyRoundcube "plugin_manager" plugin does not work without these database adjustments.
I have unregistered this plugin or I have already applied database adjustments manually.