wp_diq_forms

Verified

Stores form definitions and related configuration.

Column Definitions

ColumnTypeNullable
🔑idintNO
diq_form_labelvarchar(255)YES
diq_form_htmltextNO
diq_form_shortcodevarchar(255)NO
diq_form_appearancevarchar(255)YES
diq_form_messagetextYES
diq_form_settingvarchar(1000)YES
diq_form_checkbox_labelvarchar(255)YES
diq_form_publish_datevarchar(255)NO
diq_form_custom_cssvarchar(1000)YES

CREATE TABLE Statement

CREATE TABLE `wp_diq_forms` (\n  `id` int NOT NULL AUTO_INCREMENT,\n  `diq_form_label` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `diq_form_html` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `diq_form_shortcode` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `diq_form_appearance` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `diq_form_message` text COLLATE utf8mb4_unicode_520_ci,\n  `diq_form_setting` varchar(1000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `diq_form_checkbox_label` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `diq_form_publish_date` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `diq_form_custom_css` varchar(1000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled DirectIQ Email Marketing, 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_diq_forms`;

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