wp_infobar_campaigns
StaticStores infobar campaigns data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑int_title_id | int(11) | NO |
| str_title | varchar(255) | NO |
| start_date | datetime | NO |
| end_date | datetime | NO |
| duration | int(11) | NO |
| show_where | varchar(255) | NO |
| link_target | tinyint(4) | NO |
| display_on | int(11) | NO |
| browsers | varchar(100) | NO |
| status | int(11) | NO |
| imp | int(11) | NO |
| loadtime | int(11) | NO |
| closetime | int(11) | NO |
| tracking | int(11) | NO |
| track_imps | int(11) | NO |
| dated | timestamp | NO |
| last_shown | timestamp | NO |
| cookie_name | varchar(100) | NO |
CREATE TABLE Statement
CREATE TABLE infobar_campaigns ( `int_title_id` int(11) NOT NULL AUTO_INCREMENT, `str_title` varchar(255) NOT NULL, `start_date` datetime NOT NULL, `end_date` datetime NOT NULL, `duration` int(11) NOT NULL DEFAULT '0', `show_where` varchar(255) NOT NULL, `link_target` tinyint(4) NOT NULL, `display_on` int(11) NOT NULL, `browsers` varchar(100) NOT NULL DEFAULT 'All', `status` int(11) NOT NULL DEFAULT '1', `imp` int(11) NOT NULL DEFAULT '1', `loadtime` int(11) NOT NULL DEFAULT '1', `closetime` int(11) NOT NULL DEFAULT '1', `tracking` int(11) NOT NULL DEFAULT '0', `track_imps` int(11) NOT NULL DEFAULT '0', `dated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `last_shown` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `cookie_name` varchar(100) NOT NULL DEFAULT 'infobar', PRIMARY KEY (`int_title_id`) ) ENGINE
Safe to delete?
If you have uninstalled InfobarWP, 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_infobar_campaigns`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from InfobarWP