wp_ceovw_logs

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idmediumint(9)NO
user_idbigint(20)NO
emailvarchar(100)NO
ip_addressvarchar(50)NO
action_typevarchar(20)NO
created_atdatetimeNO
emailvarchar(100)NO
otpvarchar(10)NO
flowvarchar(20)NO
payloadtextYES
created_atdatetimeNO

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