wp_infobar_variants

Static

Stores infobar variants data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑int_message_idsmallint(16)NO
int_title_idint(11)NO
namevarchar(255)NO
str_messagevarchar(255)NO
link_typeint(11)NO
str_link_textvarchar(255)NO
str_link_imgtextNO
str_link_urlvarchar(255)NO
str_optionsvarchar(255)NO
themeint(11)NO
int_activeint(11)NO
datedtimestampNO

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