wp_infobar_session
StaticStores session data for tracking user or visitor state.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| int_session_id | int(11) | NO |
| int_title_id | int(11) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `infobar_session` ( `int_session_id` int(11) NOT NULL, `int_title_id` int(11) NOT NULL ) 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_session`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from InfobarWP