wp_crypto_payments

Static

Stores crypto payments data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑paymentIDint(11) unsignedNO
boxIDint(11) unsignedNO
boxTypeenum('paymentbox','captchabox')NO
orderIDvarchar(50)NO
userIDvarchar(50)NO
countryIDvarchar(3)NO
coinLabelvarchar(6)NO
amountdouble(20,8)NO
amountUSDdouble(20,8)NO
unrecognisedtinyint(1) unsignedNO
addrvarchar(34)NO
txIDchar(64)NO
txDatedatetimeYES
txConfirmedtinyint(1) unsignedNO
txCheckDatedatetimeYES
processedtinyint(1) unsignedNO
processedDatedatetimeYES
recordCreateddatetimeYES

CREATE TABLE Statement

CREATE TABLE `crypto_payments` ( `paymentID` int(11) unsigned NOT NULL AUTO_INCREMENT, `boxID` int(11) unsigned NOT NULL DEFAULT '0', `boxType` enum('paymentbox','captchabox') NOT NULL, `orderID` varchar(50) NOT NULL DEFAULT '', `userID` varchar(50) NOT NULL DEFAULT '', `countryID` varchar(3) NOT NULL DEFAULT '', `coinLabel` varchar(6) NOT NULL DEFAULT '', `amount` double(20,8) NOT NULL DEFAULT '0.00000000', `amountUSD` double(20,8) NOT NULL DEFAULT '0.00000000', `unrecognised` tinyint(1) unsigned NOT NULL DEFAULT '0', `addr` varchar(34) NOT NULL DEFAULT '', `txID` char(64) NOT NULL DEFAULT '', `txDate` datetime DEFAULT NULL, `txConfirmed` tinyint(1) unsigned NOT NULL DEFAULT '0', `txCheckDate` datetime DEFAULT NULL, `processed` tinyint(1) unsigned NOT NULL DEFAULT '0', `processedDate` datetime DEFAULT NULL, `recordCreated` datetime DEFAULT NULL, PRIMARY KEY (`paymentID`), KEY `boxID` (`boxID`), KEY `boxType` (`boxType`), KEY `userID` (`userID`), KEY `countryID` (`countryID`), KEY `orderID` (`orderID`), KEY `amount` (`amount`), KEY `amountUSD` (`amountUSD`), KEY `coinLabel` (`coinLabel`), KEY `unrecognised` (`unrecognised`), KEY `addr` (`addr`), KEY `txID` (`txID`), KEY `txDate` (`txDate`), KEY `txConfirmed` (`txConfirmed`), KEY `txCheckDate` (`txCheckDate`), KEY `processed` (`processed`), KEY `processedDate` (`processedDate`), KEY `recordCreated` (`recordCreated`), KEY `key1` (`boxID`,`orderID`), KEY `key2` (`boxID`,`orderID`,`userID`), KEY `key3` (`boxID`,`orderID`,`userID`,`txID`) ) ENGINE

Safe to delete?

If you have uninstalled GoUrl Bitcoin Payment Gateway & Paid Downloads & Membership, 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_crypto_payments`;

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

Other tables from GoUrl Bitcoin Payment Gateway & Paid Downloads & Membership