wp_plicenses_setting

Static

Stores plicenses setting data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
key_pretextNO
key_suftextNO
key_expiredaystextNO
key_allowdomainstextNO
default_key_statustextNO
default_key_expiretextNO
int_woocommercetextNO
mail_templatetextNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_plicenses_setting` ( `id` int(11) NOT NULL AUTO_INCREMENT, `key_pre` text CHARACTER SET utf8 NOT NULL, `key_suf` text CHARACTER SET utf8 NOT NULL, `key_expiredays` text CHARACTER SET utf8 NOT NULL, `key_allowdomains` text CHARACTER SET utf8 NOT NULL, `default_key_status` text CHARACTER SET utf8 NOT NULL, `default_key_expire` text CHARACTER SET utf8 NOT NULL, `int_woocommerce` text CHARACTER SET utf8 NOT NULL, `mail_template` text CHARACTER SET utf8 NOT NULL, 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_setting`;

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

Other tables from Product Licensing System