wp_adrotate_tracker

Static

Stores adrotate tracker data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(9) unsignedNO
ipaddressvarchar(15)NO
timerint(15) unsignedNO
banneridint(15) unsignedNO
statchar(1)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_adrotate_tracker` ( `id` bigint(9) unsigned NOT NULL auto_increment, `ipaddress` varchar(15) NOT NULL default '0', `timer` int(15) unsigned NOT NULL default '0', `bannerid` int(15) unsigned NOT NULL default '0', `stat` char(1) NOT NULL default 'c', PRIMARY KEY (`id`), KEY `ipaddress` (`ipaddress`), KEY `timer` (`timer`) ) ".$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_tracker`;

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

Other tables from AdRotate Banner Manager