wp_course_table
StaticStores course table data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| Course_No | varchar(20) | NO |
| Course_Title | varchar(50) | NO |
| Section | varchar(10) | NO |
| CRN | varchar(15) | NO |
| Instructor_login | varchar(45) | NO |
| Term | varchar(45) | NO |
| Timestamp | timestamp | NO |
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