wp_general_info
StaticStores general info data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(10) unsigned | NO |
| Title | varchar(45) | NO |
| Value | varchar(250) | YES |
| Value_Name | varchar(45) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS general_info (id int(10) unsigned NOT NULL AUTO_INCREMENT, Title varchar(45) NOT NULL, Value varchar(250) DEFAULT NULL, Value_Name varchar(45) NOT NULL, PRIMARY KEY (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_general_info`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Community Gradebook