wp_mab_login_sessions

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
user_idint(11)NO
session_keyvarchar(255)NO
session_valuetextYES
reorder_directint(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