wp_ccpca_analytics

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑idmediumint(9)NO
widget_typevarchar(50)NO
widget_namevarchar(100)YES
counterint(11)YES
created_atdatetimeYES
updated_atdatetimeYES

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.