wp_cu_groups

Static

Stores cu groups data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT UNSIGNEDNO
nameVARCHAR(255)NO
descriptionVARCHAR(1000)YES
enabledTINYINT(1)NO
created_atDATETIMENO

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