wp_mab_mobileapp_user_tokens
StaticStores access tokens for authentication or API access.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| customer_id | BIGINT(20) UNSIGNED | NO |
| user_email | VARCHAR(191) | NO |
| user_token | TEXT | NO |
| added_date | DATETIME | NO |
| updated_date | DATETIME | NO |
| last_used_time | DATETIME | YES |
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