wp_plicenses
StaticStores plicenses data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| tinytext | NO | |
| license | tinytext | NO |
| product | tinytext | NO |
| status | tinyint(4) | NO |
| created | int(11) | NO |
| expire | int(11) | NO |
| domain | tinytext | NO |
| order_id | tinytext | NO |
| allowed | int(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