wp_iq_auth_custom_fields

Static

Stores iq auth custom fields data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(20)NO
type_idint(5)NO
namevarcharNO
phvarcharNO
iconvarcharNO
importanttinyintNO
enabletinyintNO
params_jsontextNO
createdintNO
redateintNO

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