wp_jg_website_analytics_bot_reasons
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑_id | BIGINT | YES |
| _bucket_start | DATETIME | NO |
| _route_group | VARCHAR(30) | NO |
| _reason_code | VARCHAR(30) | NO |
| _count_hits | INT | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_JG_website_analytics_bot_reasons ( _id BIGINT AUTO_INCREMENT PRIMARY KEY, _bucket_start DATETIME NOT NULL, _route_group VARCHAR(30) NOT NULL, _reason_code VARCHAR(30) NOT NULL, _count_hits INT NOT NULL DEFAULT 0, UNIQUE KEY bucket_route_reason (_bucket_start, _route_group, _reason_code), KEY idx_bucket_start (_bucket_start) ) ENGINE
Safe to delete?
If you have uninstalled JG Website Analytics, 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_jg_website_analytics_bot_reasons`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from JG Website Analytics