wp_bwwc_btc_addresses
StaticStores bwwc btc addresses data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| btc_address | char(36) | NO |
| origin_id | char(128) | NO |
| index_in_wallet | bigint(20) | NO |
| status | char(16) | NO |
| last_assigned_to_ip | char(16) | NO |
| assigned_at | bigint(20) | NO |
| total_received_funds | DECIMAL( 16, 8 ) | NO |
| received_funds_checked_at | bigint(20) | NO |
| address_meta | MEDIUMBLOB | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_bwwc_btc_addresses` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `btc_address` char(36) NOT NULL, `origin_id` char(128) NOT NULL DEFAULT '', `index_in_wallet` bigint(20) NOT NULL DEFAULT '0', `status` char(16) NOT NULL DEFAULT 'unknown', `last_assigned_to_ip` char(16) NOT NULL DEFAULT '0.0.0.0', `assigned_at` bigint(20) NOT NULL DEFAULT '0', `total_received_funds` DECIMAL( 16, 8 ) NOT NULL DEFAULT '0.00000000', `received_funds_checked_at` bigint(20) NOT NULL DEFAULT '0', `address_meta` MEDIUMBLOB NULL, PRIMARY KEY (`id`), UNIQUE KEY `btc_address` (`btc_address`), KEY `index_in_wallet` (`index_in_wallet`), KEY `origin_id` (`origin_id`), KEY `status` (`status`) )" );
Safe to delete?
If you have uninstalled SendBSV BSV Payments 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_bwwc_btc_addresses`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from SendBSV BSV Payments for WooCommerce