2 namespace TYPO3\CMS\Install\Updates;
47 $this->objectManager = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Extbase\Object\ObjectManager::class);
48 $this->schemaMigrationService = $this->objectManager->get(\TYPO3\CMS\Install\Service\SqlSchemaMigrationService::class);
49 $this->expectedSchemaService = $this->objectManager->get(\TYPO3\CMS\Install\Service\SqlExpectedSchemaService::class);
59 $expectedSchema = $this->expectedSchemaService->getExpectedDatabaseSchema();
60 $currentSchema = $this->schemaMigrationService->getFieldDefinitions_database();
63 return $this->schemaMigrationService->getDatabaseExtra($expectedSchema, $currentSchema);