wp_formdetailsexportor

Static

Stores formdetailsexportor data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑table_idINTYES
selected_tablenameVARCHAR(30)YES

CREATE TABLE Statement

CREATE TABLE wp_formdetailsexportor(table_id INT NULL AUTO_INCREMENT,PRIMARY KEY(table_id),selected_tablename VARCHAR(30))"; $wpdb->query($sql);

Safe to delete?

If you have uninstalled ExporttoExcel, 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_formdetailsexportor`;

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