wp_mab_unique_verification

Static

Stores mab unique verification data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(10) UNSIGNEDNO
user_idbigint(20) UNSIGNEDNO
mobile_numbervarchar(15)YES
country_codevarchar(10)YES
unique_idvarchar(100)YES
date_addeddatetimeNO
date_modifiedtimestampNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_mab_unique_verification` (`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, `user_id` bigint(20) UNSIGNED NOT NULL, `mobile_number` varchar(15) DEFAULT NULL, `country_code` varchar(10) DEFAULT NULL, `unique_id` varchar(100) DEFAULT NULL, `date_added` datetime NOT NULL, `date_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`))"));

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_unique_verification`;

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

Other tables from Knowband Mobile App Builder