wp_course_table

Static

Stores course table data created by this plugin.

Column Definitions

ColumnTypeNullable
Course_Novarchar(20)NO
Course_Titlevarchar(50)NO
Sectionvarchar(10)NO
CRNvarchar(15)NO
Instructor_loginvarchar(45)NO
Termvarchar(45)NO
TimestamptimestampNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS course_table (Course_No varchar(20) NOT NULL, Course_Title varchar(50) NOT NULL, Section varchar(10) NOT NULL, CRN varchar(15) NOT NULL, Instructor_login varchar(45) NOT NULL, Term varchar(45) NOT NULL, Timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (CRN));

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

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

Other tables from Community Gradebook