Trying to uninstall this plugin causes an error in Craft 3.
The reason appears to be that the migration that drops the olivemenus table is run before the migration that drops the olivemenus_items table.
This causes the uninstallation process to fail because the olivemenus_items table has a foreign key constraint on the olivemenus table, which means the olivemenus table cannot be dropped as long as the olivemenus_items table exists.
Until this issue has been fixed in a future update, the solution to this is to drop the olivemenus_items table manually first, and afterwards uninstall this plugin through the Craft control panel.
Trying to uninstall this plugin causes an error in Craft 3.
The reason appears to be that the migration that drops the
olivemenus
table is run before the migration that drops theolivemenus_items
table.This causes the uninstallation process to fail because the
olivemenus_items
table has a foreign key constraint on theolivemenus
table, which means theolivemenus
table cannot be dropped as long as theolivemenus_items
table exists.Until this issue has been fixed in a future update, the solution to this is to drop the
olivemenus_items
table manually first, and afterwards uninstall this plugin through the Craft control panel.