wp_products
StaticStores products data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| product_id | BIGINT | NO |
| title | VARCHAR(255) | NO |
| description | LONGTEXT | NO |
| cost | FLOAT | NO |
| version_num | VARCHAR(255) | NO |
| download_link | TEXT | NO |
CREATE TABLE Statement
CREATE TABLE `products` ( `product_id` BIGINT NOT NULL , `title` VARCHAR(255) NOT NULL , `description` LONGTEXT NOT NULL , `cost` FLOAT NOT NULL , `version_num` VARCHAR(255) NOT NULL , `download_link` TEXT NOT NULL , PRIMARY KEY (`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`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Email Reminders