wp_disclosure_userlabels
StaticStores disclosure userlabels data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) unsigned | NO |
| cap_title | varchar(64) | NO |
| capability | varchar(128) | NO |
| blog_id | bigint(20) | NO |
CREATE TABLE Statement
CREATE TABLE wp_disclosure_userlabels ( ID bigint(20) unsigned NOT NULL AUTO_INCREMENT, cap_title varchar(64) NOT NULL, capability varchar(128) NOT NULL, blog_id bigint(20) NOT NULL, PRIMARY KEY id (`id`), UNIQUE KEY capability (`capability`), KEY blog_id (`blog_id`) );
Safe to delete?
If you have uninstalled Access Areas for WordPress, 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_disclosure_userlabels`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.