wp_ceovw_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) | NO |
| user_id | bigint(20) | NO |
| varchar(100) | NO | |
| ip_address | varchar(50) | NO |
| action_type | varchar(20) | NO |
| created_at | datetime | NO |
| varchar(100) | NO | |
| otp | varchar(10) | NO |
| flow | varchar(20) | NO |
| payload | text | YES |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_ceovw_logs ( id mediumint(9) NOT NULL AUTO_INCREMENT, user_id bigint(20) NOT NULL DEFAULT 0, email varchar(100) NOT NULL, ip_address varchar(50) NOT NULL, action_type varchar(20) NOT NULL, created_at datetime DEFAULT '0000-00-00 00:00:00' NOT NULL, PRIMARY KEY (id) ) $charset_collate;"; $sql2 = "CREATE TABLE wp_ceovw_otps ( id mediumint(9) NOT NULL AUTO_INCREMENT, email varchar(100) NOT NULL, otp varchar(10) NOT NULL, flow varchar(20) NOT NULL, payload text, created_at datetime DEFAULT '0000-00-00 00:00:00' NOT NULL, PRIMARY KEY (id) ) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled Naimur Email OTP Verification for WooCommerce, 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_ceovw_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Naimur Email OTP Verification for WooCommerce