wp_formdev_users

Static

Stores formdev users data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
user_idbigint(20)YES
idClientbigint(20)YES
idStagiairebigint(20)YES
dataslongtextYES
created_atdatetimeYES
updated_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE wp_formdev_users ( id bigint(20) NOT NULL AUTO_INCREMENT, user_id bigint(20) NULL, idClient bigint(20) NULL, idStagiaire bigint(20) NULL, datas 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_users`;

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

Other tables from Formdev