diff --git a/src/Setup/Patch/Schema/RemoveExistingReservations.php b/src/Setup/Patch/Schema/RemoveExistingReservations.php index acaf49e..325900b 100644 --- a/src/Setup/Patch/Schema/RemoveExistingReservations.php +++ b/src/Setup/Patch/Schema/RemoveExistingReservations.php @@ -21,12 +21,16 @@ public function __construct( */ public function apply() { + $this->setup->startSetup(); + $connection = $this->setup->getConnection(); $tableName = $connection->getTableName(self::INVENTORY_RESERVATION_TABLE_NAME); if ($connection->isTableExists($tableName)) { $connection->truncateTable($tableName); } + + $this->setup->endSetup(); } /**