wp_license_envato_userlist

Static

Stores license envato userlist data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
usernamevarchar(100)NO
itemidvarchar(30)NO
purchasecodevarchar(255)NO
tokenvarchar(255)NO
domainvarchar(255)NO
licensetypevarchar(255)NO
sold_atvarchar(255)NO
support_amountvarchar(255)NO
supported_untilvarchar(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.