wp_avopay_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| order_id | VARCHAR(20) | YES |
| swap_id | VARCHAR(64) | YES |
| level | VARCHAR(10) | NO |
| event | VARCHAR(100) | NO |
| detail | TEXT | YES |
| created_at | DATETIME | NO |
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.