wp_docodoco_geotargeting_abtesting_results

Static

Stores docodoco geotargeting abtesting results data created by this plugin.

Column Definitions

ColumnTypeNullable
targeting_idvarchar(32)NO
abtesting_groupintNO
deviceintNO
dateDATENO
click_countintYES
exit_countintYES
time_spentintYES
pv_countintYES

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.