wp_product_meta_rollback

Verified

Stores additional metadata (key-value pairs) for product meta rollback records.

CREATE TABLE Statement

CREATE TABLE `wp_product_meta_rollback` (\n  `id` int unsigned NOT NULL AUTO_INCREMENT,\n  `product_id` bigint unsigned NOT NULL,\n  `meta_key` varchar(255) NOT NULL,\n  `prev_meta` text NOT NULL,\n  `prev_from` datetime DEFAULT NULL,\n  `prev_to` datetime DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`),\n  KEY `meta_key` (`meta_key`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci

Safe to delete?

If you have uninstalled Easy Inventory And Stock Manager, this table is generally safe to remove. However, always back up your database first.

Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.

How to remove this table

DROP TABLE IF EXISTS `wp_product_meta_rollback`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Easy Inventory And Stock Manager