wp_mab_unique_verification
StaticStores mab unique verification data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(10) UNSIGNED | NO |
| user_id | bigint(20) UNSIGNED | NO |
| mobile_number | varchar(15) | YES |
| country_code | varchar(10) | YES |
| unique_id | varchar(100) | YES |
| date_added | datetime | NO |
| date_modified | timestamp | NO |
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