wp_plicenses

Static

Stores plicenses data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
emailtinytextNO
licensetinytextNO
producttinytextNO
statustinyint(4)NO
createdint(11)NO
expireint(11)NO
domaintinytextNO
order_idtinytextNO
allowedint(4)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_plicenses` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email` tinytext CHARACTER SET utf8 NOT NULL, `license` tinytext CHARACTER SET utf8 NOT NULL, `product` tinytext CHARACTER SET utf8 NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created` int(11) NOT NULL, `expire` int(11) NOT NULL, `domain` tinytext CHARACTER SET utf8 NOT NULL, `order_id` tinytext CHARACTER SET utf8 NOT NULL, `allowed` int(4) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE

Safe to delete?

If you have uninstalled Product Licensing System, 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_plicenses`;

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

Other tables from Product Licensing System