wp_woocommerce_buckaroo_transactions
StaticStores woocommerce buckaroo transactions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| wc_orderid | bigint(20) | NO |
| transaction | varchar(200) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_woocommerce_buckaroo_transactions ( wc_orderid bigint(20) NOT NULL, transaction varchar(200) NOT NULL, PRIMARY KEY (wc_orderid) ) $collate;" );
Safe to delete?
If you have uninstalled Buckaroo Woocommerce Payments Plugin, 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_woocommerce_buckaroo_transactions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.