wp_cu_groups
StaticStores cu groups data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT UNSIGNED | NO |
| name | VARCHAR(255) | NO |
| description | VARCHAR(1000) | YES |
| enabled | TINYINT(1) | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_cu_groups ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(255) NOT NULL, description VARCHAR(1000) DEFAULT NULL, enabled TINYINT(1) NOT NULL DEFAULT 1, created_at DATETIME NOT NULL, PRIMARY KEY (id), KEY idx_enabled (enabled) ) ENGINE
Safe to delete?
If you have uninstalled Code Unloader, 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_cu_groups`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Code Unloader