wp_products_meta
StaticStores additional metadata (key-value pairs) for products records.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| products_meta_id | BIGINT | NO |
| products_meta_key | VARCHAR(255) | NO |
| products_meta_value | LONGTEXT | NO |
| products_meta_date | DATETIME | NO |
| product_id | BIGINT | NO |
CREATE TABLE Statement
CREATE TABLE `products_meta` ( `products_meta_id` BIGINT NOT NULL , `products_meta_key` VARCHAR(255) NOT NULL , `products_meta_value` LONGTEXT NOT NULL , `products_meta_date` DATETIME NOT NULL , `product_id` BIGINT NOT NULL , PRIMARY KEY (`products_meta_id`), KEY `fkIdx_155` (`product_id`), CONSTRAINT `products_to_meta` FOREIGN KEY `fkIdx_155` (`product_id`) REFERENCES `products` (`product_id`) );
Safe to delete?
If you have uninstalled Email Reminders, 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_products_meta`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Email Reminders