wp_fcwg_analytics
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| widget_id | BIGINT UNSIGNED | NO |
| channel_key | VARCHAR(60) | NO |
| event_date | DATE | NO |
| clicks | INT | NO |
CREATE TABLE Statement
CREATE TABLE wp_fcwg_analytics ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, widget_id BIGINT UNSIGNED NOT NULL, channel_key VARCHAR(60) NOT NULL, event_date DATE NOT NULL, clicks INT NOT NULL DEFAULT 0, PRIMARY KEY (id), UNIQUE KEY widget_channel_date (widget_id, channel_key, event_date), KEY widget_id (widget_id), KEY event_date (event_date) ) $c;" );
Safe to delete?
If you have uninstalled PB Floats Contact Widget, 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_fcwg_analytics`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from PB Floats Contact Widget