wp_license_envato_userlist
StaticStores license envato userlist data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| username | varchar(100) | NO |
| itemid | varchar(30) | NO |
| purchasecode | varchar(255) | NO |
| token | varchar(255) | NO |
| domain | varchar(255) | NO |
| licensetype | varchar(255) | NO |
| sold_at | varchar(255) | NO |
| support_amount | varchar(255) | NO |
| supported_until | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_license_envato_userlist` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(100) NOT NULL DEFAULT '', `itemid` varchar(30) NOT NULL DEFAULT '', `purchasecode` varchar(255) NOT NULL DEFAULT '', `token` varchar(255) NOT NULL DEFAULT '', `domain` varchar(255) NOT NULL DEFAULT '', `licensetype` varchar(255) NOT NULL DEFAULT '', `sold_at` varchar(255) NOT NULL DEFAULT '', `support_amount` varchar(255) NOT NULL DEFAULT '', `supported_until` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) $charset_collate"; if ( !function_exists( 'dbDelta' ) ) { require_once ABSPATH . 'wp-admin/includes/upgrade.php'; } dbDelta( $schema );Safe to delete?
If you have uninstalled License For Envato, 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_license_envato_userlist`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.