wp_adsforwp_stats
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(9) unsigned | NO |
| ad_id | int(50) unsigned | NO |
| ad_thetime | int(15) unsigned | NO |
| ad_clicks | int(15) unsigned | NO |
| ad_impressions | int(15) unsigned | NO |
| ad_device_name | varchar(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.