wp_form1
StaticStores form1 data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) unsigned | NO |
| data | mediumtext | YES |
| created | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_form1` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY, `data` mediumtext, `created` DATETIME NULL ) {$charset_collate}; EOT; require_once (ABSPATH.'wp-admin/includes/upgrade.php');Safe to delete?
If you have uninstalled Form1, 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_form1`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.