wp_adsforwp_stats

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑idbigint(9) unsignedNO
ad_idint(50) unsignedNO
ad_thetimeint(15) unsignedNO
ad_clicksint(15) unsignedNO
ad_impressionsint(15) unsignedNO
ad_device_namevarchar(20)NO

CREATE TABLE Statement

CREATE TABLE `wp_adsforwp_stats` ( `id` bigint(9) unsigned NOT NULL auto_increment, `ad_id` int(50) unsigned NOT NULL default '0', `ad_thetime` int(15) unsigned NOT NULL default '0', `ad_clicks` int(15) unsigned NOT NULL default '0', `ad_impressions` int(15) unsigned NOT NULL default '0', `ad_device_name` varchar(20) NOT NULL default '', PRIMARY KEY (`id`), INDEX `ad_id` (`ad_id`), INDEX `ad_thetime` (`ad_thetime`) ) $charset_collate$engine;" );

Safe to delete?

If you have uninstalled Easy Google Adsense and Banner Ads Manager – AdsforWP, 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_adsforwp_stats`;

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