wp_gradebook

Static

Stores gradebook data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑GB_IDint(10) unsignedNO
Course_Novarchar(20)NO
Emailvarchar(100)NO
Data_Titlevarchar(1000)NO
Data_Valuevarchar(1000)NO
Termvarchar(45)NO
TimeStamptimestampNO
Sectionvarchar(45)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS gradebook (GB_ID int(10) unsigned NOT NULL AUTO_INCREMENT, Course_No varchar(20) NOT NULL, Email varchar(100) NOT NULL, Data_Title varchar(1000) NOT NULL, Data_Value varchar(1000) NOT NULL, Term varchar(45) NOT NULL, TimeStamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, Section varchar(45) NOT NULL, PRIMARY KEY (GB_ID));

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_gradebook`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Community Gradebook