class Migrations_Migration458 extends Shopware\Components\Migrations\AbstractMigration
{ public function up($modus) { $this->
fetchPluginId();
$this->
deleteConfigElements();
$this->
deleteListeners();
$this->
deletePlugin();
} private function fetchPluginId() { $sql = <<<SQL
SET @pluginId = (
SELECT id
FROM s_core_plugins
WHERE name LIKE "SelfHealing"
AND author LIKE "shopware AG"
LIMIT 1
);