- 🇮🇳India shashikanth171
I have resolved the issue by creating the missing tables. I got the create query by exporting database of a new drupal 9 site with the commerce installed.
-- -- Table structure for table `commerce_store__tax_registrations` -- DROP TABLE IF EXISTS `commerce_store__tax_registrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `commerce_store__tax_registrations` ( `bundle` varchar(128) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The field instance bundle to which this row belongs, used when deleting a field instance', `deleted` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'A boolean indicating whether this data item has been deleted', `entity_id` int(10) unsigned NOT NULL COMMENT 'The entity id this data is attached to', `revision_id` int(10) unsigned NOT NULL COMMENT 'The entity revision id this data is attached to, which for an unversioned entity type is the same as the entity id', `langcode` varchar(32) CHARACTER SET ascii NOT NULL DEFAULT '' COMMENT 'The language code for this data item.', `delta` int(10) unsigned NOT NULL COMMENT 'The sequence number for this data item, used for multi-value fields', `tax_registrations_value` varchar(255) NOT NULL, PRIMARY KEY (`entity_id`,`deleted`,`delta`,`langcode`), KEY `bundle` (`bundle`), KEY `revision_id` (`revision_id`), KEY `tax_registrations_value` (`tax_registrations_value`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Data storage for commerce_store field tax_registrations.'; /*!40101 SET character_set_client = @saved_cs_client */;
- Status changed to Closed: cannot reproduce
about 1 month ago 11:31am 19 November 2024