wp_formdev_metas
StaticStores additional metadata (key-value pairs) for formdev metas records.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| meta_key | varchar(250) | YES |
| meta_value | longtext | YES |
| created_at | datetime | YES |
| updated_at | datetime | YES |
CREATE TABLE Statement
CREATE TABLE wp_formdev_metas ( id bigint(20) NOT NULL AUTO_INCREMENT, meta_key varchar(250) NULL, meta_value longtext NULL, created_at datetime NULL, updated_at datetime NULL, PRIMARY KEY (id) ) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled Formdev, 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_formdev_metas`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Formdev