wp_iq_auth_custom_fields
StaticStores iq auth custom fields data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(20) | NO |
| type_id | int(5) | NO |
| name | varchar | NO |
| ph | varchar | NO |
| icon | varchar | NO |
| important | tinyint | NO |
| enable | tinyint | NO |
| params_json | text | NO |
| created | int | NO |
| redate | int | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_iq_auth_custom_fields` ( `id` int(20) NOT NULL AUTO_INCREMENT, `type_id` int(5) NOT NULL DEFAULT 0, `name` varchar (100) NOT NULL DEFAULT '', `ph` varchar (100) NOT NULL DEFAULT '', `icon` varchar (100) NOT NULL DEFAULT '', `important` tinyint (2) NOT NULL DEFAULT 0, `enable` tinyint (2) NOT NULL DEFAULT 1, `params_json` text (0) NOT NULL DEFAULT '[]', `created` int (12) NOT NULL DEFAULT 0, `redate` int (12) NOT NULL DEFAULT 0, PRIMARY KEY `id` (`id`) );
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_custom_fields`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from IQ Authorization