diff --git a/typo3/sysext/core/Classes/Database/Schema/SchemaMigrator.php b/typo3/sysext/core/Classes/Database/Schema/SchemaMigrator.php
index 2e82166f3cbe06a8a8c9047985c2ba11516c491c..f50504265a5195d12303d7011e7123a8134e2e55 100644
--- a/typo3/sysext/core/Classes/Database/Schema/SchemaMigrator.php
+++ b/typo3/sysext/core/Classes/Database/Schema/SchemaMigrator.php
@@ -19,6 +19,7 @@ use Doctrine\DBAL\DBALException;
 use Doctrine\DBAL\Schema\Schema;
 use Doctrine\DBAL\Schema\SchemaDiff;
 use Doctrine\DBAL\Schema\Table;
+use TYPO3\CMS\Core\Configuration\Features;
 use TYPO3\CMS\Core\Database\ConnectionPool;
 use TYPO3\CMS\Core\Database\Schema\Exception\StatementException;
 use TYPO3\CMS\Core\Database\Schema\Parser\Parser;
@@ -268,6 +269,18 @@ class SchemaMigrator
         }
 
         // Flatten the array of arrays by one level
-        return array_merge(...$tables);
+        $tables = array_merge(...$tables);
+
+        // Drop any definition of pages_language_overlay in SQL
+        // will be removed in TYPO3 v10.0 once the feature is enabled by default
+        if (GeneralUtility::makeInstance(Features::class)->isFeatureEnabled('unifiedPageTranslationHandling')) {
+            foreach ($tables as $k => $table) {
+                if ($table->getName() === 'pages_language_overlay') {
+                    unset($tables[$k]);
+                }
+            }
+        }
+
+        return $tables;
     }
 }
diff --git a/typo3/sysext/core/Classes/Migrations/TcaMigration.php b/typo3/sysext/core/Classes/Migrations/TcaMigration.php
index bd6d5d0774c26b423c007293e1760249c3e8e88f..7157e794f8e4a2dac5f07c296ed2957442a5c341 100644
--- a/typo3/sysext/core/Classes/Migrations/TcaMigration.php
+++ b/typo3/sysext/core/Classes/Migrations/TcaMigration.php
@@ -15,6 +15,7 @@ namespace TYPO3\CMS\Core\Migrations;
  * The TYPO3 project - inspiring people to share!
  */
 
+use TYPO3\CMS\Core\Configuration\Features;
 use TYPO3\CMS\Core\Utility\GeneralUtility;
 
 /**
@@ -2566,9 +2567,12 @@ class TcaMigration
     protected function migratePagesLanguageOverlayRemoval(array $tca)
     {
         if (isset($tca['pages_language_overlay'])) {
-            $this->messages[] = 'The TCA table \'pages_language_overlay\' is'
-                . ' not used anymore and has been removed automatically in'
-                . ' order to avoid negative side-effects.';
+            // If the feature is not enabled, a deprecation log entry is thrown
+            if (!GeneralUtility::makeInstance(Features::class)->isFeatureEnabled('unifiedPageTranslationHandling')) {
+                $this->messages[] = 'The TCA table \'pages_language_overlay\' is'
+                    . ' not used anymore and has been removed automatically in'
+                    . ' order to avoid negative side-effects.';
+            }
             unset($tca['pages_language_overlay']);
         }
         return $tca;
diff --git a/typo3/sysext/core/Configuration/DefaultConfiguration.php b/typo3/sysext/core/Configuration/DefaultConfiguration.php
index 4f2e1ab3d5fa8856bdfcc77cfa0f5579f77fd23c..b9142a62e8d595a222795abf6ec318b06d8b59d6 100644
--- a/typo3/sysext/core/Configuration/DefaultConfiguration.php
+++ b/typo3/sysext/core/Configuration/DefaultConfiguration.php
@@ -69,7 +69,8 @@ return [
         'fileCreateMask' => '0664',
         'folderCreateMask' => '2775',
         'features' => [
-            'redirects.hitCount' => false
+            'redirects.hitCount' => false,
+            'unifiedPageTranslationHandling' => false
         ],
         'createGroup' => '',
         'sitename' => 'TYPO3',
diff --git a/typo3/sysext/core/Configuration/DefaultConfigurationDescription.yaml b/typo3/sysext/core/Configuration/DefaultConfigurationDescription.yaml
index afda9c71ebe3187d62352d32e99ea831092dae2d..b8901b34f4525f9e39fdf7bc36091aa5a2ee344e 100644
--- a/typo3/sysext/core/Configuration/DefaultConfigurationDescription.yaml
+++ b/typo3/sysext/core/Configuration/DefaultConfigurationDescription.yaml
@@ -202,6 +202,13 @@ SYS:
         systemMaintainers:
             type: array
             description: 'A list of backend user IDs allowed to access the Install Tool'
+        features:
+            type: container
+            description: 'New features of TYPO3 that are activated on new installations but upgrading installations can still use the old behaviour'
+            items:
+              unifiedPageTranslationHandling:
+                type: bool
+                description: 'If activated, TCA configuration for pages_language_overlay will never be loaded, and the database table "pages_language_overlay" will not be created.'
 EXT:
     type: container
     items:
diff --git a/typo3/sysext/core/Configuration/FactoryConfiguration.php b/typo3/sysext/core/Configuration/FactoryConfiguration.php
index 78264e18bf18d2f3bb198b727459e9c7bd533b5d..23d6ad53b92c0a72684bb40f4163876b0d048f19 100644
--- a/typo3/sysext/core/Configuration/FactoryConfiguration.php
+++ b/typo3/sysext/core/Configuration/FactoryConfiguration.php
@@ -23,5 +23,8 @@ return [
     ],
     'SYS' => [
         'sitename' => 'New TYPO3 site',
+        'features' => [
+            'unifiedPageTranslationHandling' => true
+        ],
     ],
 ];
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83711-FeatureFlagUnifiedPageTranslationHandling.rst b/typo3/sysext/core/Documentation/Changelog/master/Feature-83711-FeatureFlagUnifiedPageTranslationHandling.rst
new file mode 100644
index 0000000000000000000000000000000000000000..f243a712c8778af1db0e96df6d3581fa4779678f
--- /dev/null
+++ b/typo3/sysext/core/Documentation/Changelog/master/Feature-83711-FeatureFlagUnifiedPageTranslationHandling.rst
@@ -0,0 +1,22 @@
+.. include:: ../../Includes.txt
+
+=============================================================
+Feature: #83711 - FeatureFlag: unifiedPageTranslationHandling
+=============================================================
+
+See :issue:`83711`
+
+Description
+===========
+
+The feature switch `unifiedPageTranslationHandling` is active for all new
+installations, but not active for existing installations.
+
+It does the following when active:
+- All DB schema migrations decide to drop `pages_language_overlay`
+- TCA migration no longer throws a deprecation info (but still unsets `pages_language_overlay`)
+
+Once the Update Wizard for migrating `pages_language_overlay` records is done,
+the feature is enabled.
+
+.. index:: Backend, Frontend
\ No newline at end of file
diff --git a/typo3/sysext/install/Classes/Updates/MigratePagesLanguageOverlayUpdate.php b/typo3/sysext/install/Classes/Updates/MigratePagesLanguageOverlayUpdate.php
index 16764f634831fa7e6afcbac7b2bf638118e5a11d..8b5c760de20f9b09f9321169b3a259384d5221fc 100644
--- a/typo3/sysext/install/Classes/Updates/MigratePagesLanguageOverlayUpdate.php
+++ b/typo3/sysext/install/Classes/Updates/MigratePagesLanguageOverlayUpdate.php
@@ -15,6 +15,7 @@ namespace TYPO3\CMS\Install\Updates;
  * The TYPO3 project - inspiring people to share!
  */
 
+use TYPO3\CMS\Core\Configuration\ConfigurationManager;
 use TYPO3\CMS\Core\Database\ConnectionPool;
 use TYPO3\CMS\Core\Utility\GeneralUtility;
 use TYPO3\CMS\Install\Service\LoadTcaService;
@@ -46,7 +47,8 @@ class MigratePagesLanguageOverlayUpdate extends AbstractUpdate
 
         $updateNeeded = false;
 
-        if (!$this->isWizardDone()) {
+        // Check if the database table even exists
+        if ($this->checkIfWizardIsRequired() && !$this->isWizardDone()) {
             $updateNeeded = true;
         }
 
@@ -92,6 +94,7 @@ class MigratePagesLanguageOverlayUpdate extends AbstractUpdate
         $this->updateInlineRelations();
         $this->updateSysHistoryRelations();
         $this->markWizardAsDone();
+        $this->enableFeatureFlag();
         return true;
     }
 
@@ -293,4 +296,40 @@ class MigratePagesLanguageOverlayUpdate extends AbstractUpdate
             ->fetch();
         return !empty($migratedRecord);
     }
+
+    /**
+     * Check if the database table "pages_language_overlay" exists and if so, if there are entries in the DB table.
+     *
+     * @return bool
+     * @throws \InvalidArgumentException
+     */
+    protected function checkIfWizardIsRequired(): bool
+    {
+        $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
+        $connection = $connectionPool->getConnectionByName('Default');
+        $tableNames = $connection->getSchemaManager()->listTableNames();
+        if (in_array('pages_language_overlay', $tableNames, true)) {
+            // table is available, now check if there are entries in it
+            $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
+                ->getQueryBuilderForTable('pages_language_overlay');
+            $numberOfEntries = $queryBuilder->count('*')
+                ->from('pages_language_overlay')
+                ->execute()
+                ->fetchColumn();
+            return (bool)$numberOfEntries;
+        }
+
+        return false;
+    }
+
+    /**
+     * Once the update wizard is run through, the feature to not load any pages_language_overlay data can
+     * be activated.
+     *
+     * Basically writes 'SYS/features/unifiedPageTranslationHandling' to LocalConfiguration.php
+     */
+    protected function enableFeatureFlag()
+    {
+        GeneralUtility::makeInstance(ConfigurationManager::class)->enableFeature('unifiedPageTranslationHandling');
+    }
 }