dbSchemaWriter = $dbSchemaWriter; } /** * {@inheritdoc} */ public function getOperationName() { return self::OPERATION_NAME; } /** * {@inheritdoc} */ public function isOperationDestructive() { return false; } /** * {@inheritdoc} */ public function doOperation(ElementHistory $elementHistory) { /** @var Table $table */ $table = $elementHistory->getNew(); /** @var Table $oldTable */ $oldTable = $elementHistory->getOld(); $oldOptions = $oldTable->getDiffSensitiveParams(); $statements = []; foreach ($table->getDiffSensitiveParams() as $optionName => $optionValue) { if ($oldOptions[$optionName] !== $optionValue) { $statements[] = $this->dbSchemaWriter->modifyTableOption( $table->getName(), $table->getResource(), $optionName, $optionValue ); } } return $statements; } }