Hi,
I suspect that your site has an orphaned feature(s) that has been installed and activated through feature. You need to remove this before migrating or upgrading your Site.
Step 1
Run this command to find the orphaned features, Here please do compare with available content types on your site to find the missing content type from Content Type Management page.
Get-SPFeature | ? { $_.Scope -eq $null }
Step 2,
$orphanedFeature = Get-SPFeature | ? { $_.DisplayName -eq "feature name" } $orphanedFeature.Delete()
Murugesa Pandian MCSA,MCSE,MCPD
Please remember to mark the replies as answers or helpful if they really helped and saved your time.