wp_adrotate_stats
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(9) unsigned | NO |
| ad | int(5) unsigned | NO |
| group | int(5) unsigned | NO |
| thetime | int(15) unsigned | NO |
| clicks | int(15) unsigned | NO |
| impressions | int(15) unsigned | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_adrotate_stats` ( `id` bigint(9) unsigned NOT NULL auto_increment, `ad` int(5) unsigned NOT NULL default '0', `group` int(5) unsigned NOT NULL default '0', `thetime` int(15) unsigned NOT NULL default '0', `clicks` int(15) unsigned NOT NULL default '0', `impressions` int(15) unsigned NOT NULL default '0', PRIMARY KEY (`id`), INDEX `ad_thetime` (`ad`, `thetime`), INDEX `thetime` (`thetime`) ) ".$charset_collate.$engine.";");
Safe to delete?
If you have uninstalled AdRotate Banner Manager, 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_adrotate_stats`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AdRotate Banner Manager