wp_woocommerce_buckaroo_transactions

Static

Stores woocommerce buckaroo transactions data created by this plugin.

Column Definitions

ColumnTypeNullable
wc_orderidbigint(20)NO
transactionvarchar(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.