wp_adrotate_stats_archive

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑idbigint(9) unsignedNO
adint(5) unsignedNO
groupint(5) unsignedNO
thetimeint(15) unsignedNO
clicksint(15) unsignedNO
impressionsint(15) unsignedNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_adrotate_stats_archive` ( `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_archive`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from AdRotate Banner Manager