diff --git a/vendor/magento/module-quote/etc/db_schema.xml b/vendor/magento/module-quote/etc/db_schema.xml
index ff183e31508..98c55175318 100644
--- a/vendor/magento/module-quote/etc/db_schema.xml
+++ b/vendor/magento/module-quote/etc/db_schema.xml
@@ -97,8 +97,9 @@
             <column name="store_id"/>
             <column name="is_active"/>
         </index>
-        <index referenceId="QUOTE_STORE_ID" indexType="btree">
+        <index referenceId="QUOTE_STORE_ID_UPDATED_AT" indexType="btree">
             <column name="store_id"/>
+            <column name="updated_at"/>
         </index>
     </table>
     <table name="quote_address" resource="checkout" engine="innodb" comment="Sales Flat Quote Address">
diff --git a/vendor/magento/module-quote/etc/db_schema_whitelist.json b/vendor/magento/module-quote/etc/db_schema_whitelist.json
index 5667a9a5b46..9e1f8ce164b 100644
--- a/vendor/magento/module-quote/etc/db_schema_whitelist.json
+++ b/vendor/magento/module-quote/etc/db_schema_whitelist.json
@@ -53,7 +53,8 @@
         },
         "index": {
             "QUOTE_CUSTOMER_ID_STORE_ID_IS_ACTIVE": true,
-            "QUOTE_STORE_ID": true
+            "QUOTE_STORE_ID": true,
+            "QUOTE_STORE_ID_UPDATED_AT": true
         },
         "constraint": {
             "PRIMARY": true,
@@ -121,7 +122,9 @@
             "vat_is_valid": true,
             "vat_request_id": true,
             "vat_request_date": true,
-            "vat_request_success": true
+            "vat_request_success": true,
+            "validated_country_code": true,
+            "validated_vat_number": true
         },
         "index": {
             "QUOTE_ADDRESS_QUOTE_ID": true
