wp_gb_user_table

Static

Stores gb user table data created by this plugin.

Column Definitions

ColumnTypeNullable
User_loginvarchar(45)NO
User_emailvarchar(100)NO
User_rolevarchar(45)NO
TimestamptimestampNO
User_namevarchar(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