wp_ccpca_analytics
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) | NO |
| widget_type | varchar(50) | NO |
| widget_name | varchar(100) | YES |
| counter | int(11) | YES |
| created_at | datetime | YES |
| updated_at | datetime | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_ccpca_analytics ( id mediumint(9) NOT NULL AUTO_INCREMENT, widget_type varchar(50) NOT NULL, widget_name varchar(100) DEFAULT '', counter int(11) DEFAULT 0, created_at datetime DEFAULT CURRENT_TIMESTAMP, updated_at datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY widget_type (widget_type), KEY created_at (created_at) ) $charset_collate;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; $wpdb->query('START TRANSACTION');Safe to delete?
If you have uninstalled Accessiy by CodeConfig – Accessibility Widgets for ADA, EAA & WCAG Compliance, 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_ccpca_analytics`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.