wp_infobar_variants
StaticStores infobar variants data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑int_message_id | smallint(16) | NO |
| int_title_id | int(11) | NO |
| name | varchar(255) | NO |
| str_message | varchar(255) | NO |
| link_type | int(11) | NO |
| str_link_text | varchar(255) | NO |
| str_link_img | text | NO |
| str_link_url | varchar(255) | NO |
| str_options | varchar(255) | NO |
| theme | int(11) | NO |
| int_active | int(11) | NO |
| dated | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `infobar_variants` ( `int_message_id` smallint(16) NOT NULL AUTO_INCREMENT, `int_title_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `str_message` varchar(255) NOT NULL, `link_type` int(11) NOT NULL DEFAULT '0', `str_link_text` varchar(255) NOT NULL, `str_link_img` text NOT NULL, `str_link_url` varchar(255) NOT NULL, `str_options` varchar(255) NOT NULL, `theme` int(11) NOT NULL, `int_active` int(11) NOT NULL DEFAULT '1', `dated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY `int_message_id` (`int_message_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_variants`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from InfobarWP