wp_gb_user_table
StaticStores gb user table data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| User_login | varchar(45) | NO |
| User_email | varchar(100) | NO |
| User_role | varchar(45) | NO |
| Timestamp | timestamp | NO |
| User_name | varchar(45) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS gb_user_table (User_login varchar(45) NOT NULL, User_email varchar(100) NOT NULL, User_role varchar(45) NOT NULL, Timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, User_name varchar(45) NOT NULL, PRIMARY KEY (User_login));
Safe to delete?
If you have uninstalled Community Gradebook, 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_gb_user_table`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Community Gradebook