wp_avopay_logs

Static

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

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
order_idVARCHAR(20)YES
swap_idVARCHAR(64)YES
levelVARCHAR(10)NO
eventVARCHAR(100)NO
detailTEXTYES
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_avopay_logs ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, order_id VARCHAR(20) DEFAULT NULL, swap_id VARCHAR(64) DEFAULT NULL, level VARCHAR(10) NOT NULL, event VARCHAR(100) NOT NULL, detail TEXT, created_at DATETIME NOT NULL, PRIMARY KEY (id), KEY idx_order (order_id), KEY idx_swap (swap_id), KEY idx_created (created_at) ) $charset_collate;"; dbDelta( $sql );

Safe to delete?

If you have uninstalled AvoPay Bitcoin 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_avopay_logs`;

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