This is the answer I got backed from my managed wordpress host:
I have checked once again searching for issues in the logs related to the MPG plugin specifically. I have been able to trace down the following for it in the logs:
[30-Mar-2021 17:51:33 UTC] WordPress database error Duplicate column name ‘apply_condition’ for query ALTER TABLE wp_3qgra8_mpg_projects
ADD apply_condition
varchar(200) default null AF
TER url_mode
made by activate_plugin, do_action(‘activate_multi-pages-plugin-premium/porthas-multi-pages-generator.php’), WP_Hook->do_action, WP_Hook->apply_filters, MPG_Helper::mpg_activa
tion_events, MPG_ProjectModel::mpg_create_database_tables
From what I am seeing, it is trying to do an activation, by attempting to create columns in the database tables which already exist in the database. The function doing it seems to be “MPG_Helper::mpg_activation_events, MPG_ProjectModel::mpg_create_database_tables” from the “activate_multi-pages-plugin-premium” plugin. I am not sure if it is a good option to drop the table and retry the activation all over again (it has the potential to lose historical data). I am also not sure, why it tries to activate itself all over again.