Skip to content

Commit

Permalink
fix(uninstall): Fix issue with uninstall checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Yousef Chanan committed Jun 6, 2016
1 parent 29025cf commit 8f4891a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Command/UninstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ private function removeWishlistTables($manager)
$schemaManager = $manager->getConnection()->getSchemaManager();

// Skip if product group table does not exist
if (!$schemaManager->tablesExist(['webburza_sylius_product_group'])) {
if (!$schemaManager->tablesExist(['webburza_sylius_wishlist'])) {
return;
}

Expand Down

0 comments on commit 8f4891a

Please sign in to comment.