wp_crypto_products

Static

Stores product records and related data.

Column Definitions

ColumnTypeNullable
🔑productIDint(11) unsignedNO
productTitlevarchar(100)NO
activetinyint(1)NO
priceUSDdouble(10,2)NO
priceCoindouble(17,5)NO
priceLabelvarchar(6)NO
purchasesmediumint(8)NO
expiryPeriodvarchar(15)NO
langvarchar(2)NO
defCoinvarchar(5)NO
defShowtinyint(1)NO
productTexttextYES
finalTexttextYES
emailUsertinyint(1)NO
emailUserFromvarchar(50)NO
emailUserTitlevarchar(100)NO
emailUserBodytextYES
emailAdmintinyint(1)NO
emailAdminFromvarchar(50)NO
emailAdminTotextYES
emailAdminTitlevarchar(100)NO
emailAdminBodytextYES
paymentCntsmallint(5)NO
paymentTimedatetimeYES
updatetimedatetimeYES
createtimedatetimeYES

CREATE TABLE Statement

CREATE TABLE `crypto_products` ( `productID` int(11) unsigned NOT NULL AUTO_INCREMENT, `productTitle` varchar(100) NOT NULL DEFAULT '', `active` tinyint(1) NOT NULL DEFAULT '1', `priceUSD` double(10,2) NOT NULL DEFAULT '0.00', `priceCoin` double(17,5) NOT NULL DEFAULT '0.00000', `priceLabel` varchar(6) NOT NULL DEFAULT '', `purchases` mediumint(8) NOT NULL DEFAULT '0', `expiryPeriod` varchar(15) NOT NULL DEFAULT '', `lang` varchar(2) NOT NULL DEFAULT '', `defCoin` varchar(5) NOT NULL DEFAULT '', `defShow` tinyint(1) NOT NULL DEFAULT '1', `productText` text, `finalText` text, `emailUser` tinyint(1) NOT NULL DEFAULT '1', `emailUserFrom` varchar(50) NOT NULL DEFAULT '', `emailUserTitle` varchar(100) NOT NULL DEFAULT '', `emailUserBody` text, `emailAdmin` tinyint(1) NOT NULL DEFAULT '1', `emailAdminFrom` varchar(50) NOT NULL DEFAULT '', `emailAdminTo` text, `emailAdminTitle` varchar(100) NOT NULL DEFAULT '', `emailAdminBody` text, `paymentCnt` smallint(5) NOT NULL DEFAULT '0', `paymentTime` datetime DEFAULT NULL, `updatetime` datetime DEFAULT NULL, `createtime` datetime DEFAULT NULL, PRIMARY KEY (`productID`), KEY `productTitle` (`productTitle`), KEY `active` (`active`), KEY `priceUSD` (`priceUSD`), KEY `priceCoin` (`priceCoin`), KEY `priceLabel` (`priceLabel`), KEY `purchases` (`purchases`), KEY `expiryPeriod` (`expiryPeriod`), KEY `lang` (`lang`), KEY `defCoin` (`defCoin`), KEY `defShow` (`defShow`), KEY `emailUser` (`emailUser`), KEY `emailAdmin` (`emailAdmin`), KEY `paymentCnt` (`paymentCnt`), KEY `paymentTime` (`paymentTime`), KEY `updatetime` (`updatetime`), KEY `createtime` (`createtime`) ) 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_products`;

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

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