wp_iq_auth_code
StaticStores iq auth code data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| service | varchar | NO |
| varchar | NO | |
| code | varchar | NO |
| date | int(12) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_iq_auth_code` ( `service` varchar (32) NOT NULL DEFAULT '', `email` varchar (100) NOT NULL DEFAULT '', `code` varchar (32) NOT NULL DEFAULT '', `date` int(12) NOT NULL DEFAULT 0 );
Safe to delete?
If you have uninstalled IQ Authorization, 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_iq_auth_code`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from IQ Authorization