wp_skrill_transaction_log

Static

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

Column Definitions

ColumnTypeNullable
🔑idint(20) unsignedNO
order_idbigint(20) unsignedNO
transaction_idvarchar(100)YES
mb_transaction_idvarchar(50)NO
payment_method_idvarchar(30)YES
payment_typevarchar(16)NO
payment_statusvarchar(30)YES
amountdecimal(17,2)NO
refunded_amountdecimal(17,2)YES
currencychar(3)NO
customer_idint(11) unsignedYES
datedatetimeNO
additional_informationLONGTEXTYES
payment_responseLONGTEXTYES
activetinyint(1) unsignedNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_skrill_transaction_log ( `id` int(20) unsigned NOT NULL AUTO_INCREMENT, `order_id` bigint(20) unsigned NOT NULL, `transaction_id` varchar(100), `mb_transaction_id` varchar(50) NOT NULL, `payment_method_id` varchar(30), `payment_type` varchar(16) NOT NULL, `payment_status` varchar(30), `amount` decimal(17,2) NOT NULL, `refunded_amount` decimal(17,2) DEFAULT '0', `currency` char(3) NOT NULL, `customer_id` int(11) unsigned DEFAULT NULL, `date` datetime NOT NULL, `additional_information` LONGTEXT NULL, `payment_response` LONGTEXT NULL, `active` tinyint(1) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) $charset_collate;"; dbDelta( $transaction_sql );

Safe to delete?

If you have uninstalled Skrill – 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_skrill_transaction_log`;

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