wp_docodoco_geotargeting_abtesting_results
StaticStores docodoco geotargeting abtesting results data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| targeting_id | varchar(32) | NO |
| abtesting_group | int | NO |
| device | int | NO |
| date | DATE | NO |
| click_count | int | YES |
| exit_count | int | YES |
| time_spent | int | YES |
| pv_count | int | YES |
CREATE TABLE Statement
CREATE TABLE `wp_docodoco_geotargeting_abtesting_results` ( `targeting_id` varchar(32) NOT NULL, `abtesting_group` int NOT NULL, `device` int NOT NULL, `date` DATE NOT NULL, `click_count` int DEFAULT NULL, `exit_count` int DEFAULT NULL, `time_spent` int DEFAULT NULL, `pv_count` int DEFAULT NULL, PRIMARY KEY (`targeting_id`, `date`, `abtesting_group`, `device`) ) DEFAULT CHARSET
Safe to delete?
If you have uninstalled DocoDoco GeoTargeting, 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_docodoco_geotargeting_abtesting_results`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.