wp_mab_mobileapp_user_tokens

Static

Stores access tokens for authentication or API access.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
customer_idBIGINT(20) UNSIGNEDNO
user_emailVARCHAR(191)NO
user_tokenTEXTNO
added_dateDATETIMENO
updated_dateDATETIMENO
last_used_timeDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_mab_mobileapp_user_tokens` ( `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `customer_id` BIGINT(20) UNSIGNED NOT NULL, `user_email` VARCHAR(191) NOT NULL, `user_token` TEXT NOT NULL, `added_date` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_date` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `last_used_time` DATETIME DEFAULT NULL, PRIMARY KEY (`id`), KEY `customer_id` (`customer_id`), KEY `user_email` (`user_email`), KEY `user_token` (`user_token`) ) 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_mobileapp_user_tokens`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Knowband Mobile App Builder