wp_diq_forms
VerifiedStores form definitions and related configuration.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| diq_form_label | varchar(255) | YES |
| diq_form_html | text | NO |
| diq_form_shortcode | varchar(255) | NO |
| diq_form_appearance | varchar(255) | YES |
| diq_form_message | text | YES |
| diq_form_setting | varchar(1000) | YES |
| diq_form_checkbox_label | varchar(255) | YES |
| diq_form_publish_date | varchar(255) | NO |
| diq_form_custom_css | varchar(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.