wp_adrotate

Static

Stores adrotate data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idmediumint(8) unsignedNO
titlevarchar(255)NO
bannercodelongtextNO
thetimeint(15)NO
updatedint(15)NO
authorvarchar(60)NO
imagetypevarchar(10)NO
imagevarchar(255)NO
trackerchar(1)NO
show_everyonechar(1)NO
desktopchar(1)NO
mobilechar(1)NO
tabletchar(1)NO
os_ioschar(1)NO
os_androidchar(1)NO
typevarchar(10)NO
weightint(3)NO
autodeletechar(1)NO
autodisablechar(1)NO
budgetdoubleNO
cratedoubleNO
iratedoubleNO
state_reqchar(1)NO
citiestextNO
statestextNO
countriestextNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_adrotate` ( `id` mediumint(8) unsigned NOT NULL auto_increment, `title` varchar(255) NOT NULL DEFAULT '', `bannercode` longtext NOT NULL, `thetime` int(15) NOT NULL default '0', `updated` int(15) NOT NULL, `author` varchar(60) NOT NULL default '', `imagetype` varchar(10) NOT NULL, `image` varchar(255) NOT NULL, `tracker` char(1) NOT NULL default 'N', `show_everyone` char(1) NOT NULL default 'Y', `desktop` char(1) NOT NULL default 'Y', `mobile` char(1) NOT NULL default 'Y', `tablet` char(1) NOT NULL default 'Y', `os_ios` char(1) NOT NULL default 'Y', `os_android` char(1) NOT NULL default 'Y', `type` varchar(10) NOT NULL default '0', `weight` int(3) NOT NULL default '6', `autodelete` char(1) NOT NULL default 'N', `autodisable` char(1) NOT NULL default 'N', `budget` double NOT NULL default '0', `crate` double NOT NULL default '0', `irate` double NOT NULL default '0', `state_req` char(1) NOT NULL default 'N', `cities` text NOT NULL, `states` text NOT NULL, `countries` text NOT NULL, PRIMARY KEY (`id`) ) ".$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`;

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

Other tables from AdRotate Banner Manager