wp_formdev_metas

Static

Stores additional metadata (key-value pairs) for formdev metas records.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
meta_keyvarchar(250)YES
meta_valuelongtextYES
created_atdatetimeYES
updated_atdatetimeYES

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