wp_products

Static

Stores products data created by this plugin.

Column Definitions

ColumnTypeNullable
product_idBIGINTNO
titleVARCHAR(255)NO
descriptionLONGTEXTNO
costFLOATNO
version_numVARCHAR(255)NO
download_linkTEXTNO

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