wp_mab_login_sessions
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| user_id | int(11) | NO |
| session_key | varchar(255) | NO |
| session_value | text | YES |
| reorder_direct | int(11) | NO |
CREATE TABLE Statement
CREATE TABLE `wp_mab_login_sessions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `session_key` varchar(255) NOT NULL, `session_value` text, `reorder_direct` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE
Safe to delete?
If you have uninstalled Knowband Mobile App Builder, 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_mab_login_sessions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Knowband Mobile App Builder