wp_benrueeg_users
StaticStores benrueeg users data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| user_id | bigint(20) unsigned | NO |
| user_nice_name | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE wp_benrueeg_users ( id bigint(20) unsigned NOT NULL auto_increment, user_id bigint(20) unsigned NOT NULL default '0', user_nice_name varchar(255) NOT NULL default '', PRIMARY KEY (id), KEY user_id (user_id), KEY user_nice_name (user_nice_name) ) $charset_collate;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $query );
Safe to delete?
If you have uninstalled Restrict Usernames Emails Characters, 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_benrueeg_users`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.