wp_infocob_form_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | integer | NO |
| insertDate | datetime | NO |
| postId | integer | NO |
| subject | varchar(255) | NO |
| varchar(255) | NO | |
| message | text | NO |
| logDetails | text | NO |
| emlFileName | varchar(255) | NO |
| api | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE infocob_form_logs ( id integer NOT NULL AUTO_INCREMENT, insertDate datetime DEFAULT CURRENT_TIMESTAMP NOT NULL, postId integer NOT NULL, subject varchar(255) NOT NULL, email varchar(255) NOT NULL, message text NOT NULL, logDetails text NOT NULL, emlFileName varchar(255) NOT NULL, api varchar(255) NOT NULL, PRIMARY KEY (id) ) $charset_collate;"; dbDelta($sql);
Safe to delete?
If you have uninstalled Infocob CRM Forms, 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_infocob_form_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Infocob CRM Forms