wp_crypto_files

Static

Stores crypto files data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑fileIDint(11) unsignedNO
fileTitlevarchar(100)NO
activetinyint(1)NO
fileNamevarchar(100)NO
fileUrlvarchar(255)NO
fileSizedouble(15,0)NO
fileTexttextYES
priceUSDdouble(10,2)NO
priceCoindouble(17,5)NO
priceLabelvarchar(6)NO
purchasesmediumint(8)NO
userFormatenum('MANUAL','COOKIE','SESSION','IPADDRESS')NO
expiryPeriodvarchar(15)NO
langvarchar(2)NO
defCoinvarchar(5)NO
defShowtinyint(1)NO
imagevarchar(100)NO
imageWidthsmallint(5)NO
priceShowtinyint(1)NO
paymentCntsmallint(5)NO
paymentTimedatetimeYES
updatetimedatetimeYES
createtimedatetimeYES

CREATE TABLE Statement

CREATE TABLE `crypto_files` ( `fileID` int(11) unsigned NOT NULL AUTO_INCREMENT, `fileTitle` varchar(100) NOT NULL DEFAULT '', `active` tinyint(1) NOT NULL DEFAULT '1', `fileName` varchar(100) NOT NULL DEFAULT '', `fileUrl` varchar(255) NOT NULL DEFAULT '', `fileSize` double(15,0) NOT NULL DEFAULT '0', `fileText` text, `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', `userFormat` enum('MANUAL','COOKIE','SESSION','IPADDRESS') NOT NULL, `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', `image` varchar(100) NOT NULL DEFAULT '', `imageWidth` smallint(5) NOT NULL DEFAULT '0', `priceShow` tinyint(1) NOT NULL DEFAULT '1', `paymentCnt` smallint(5) NOT NULL DEFAULT '0', `paymentTime` datetime DEFAULT NULL, `updatetime` datetime DEFAULT NULL, `createtime` datetime DEFAULT NULL, PRIMARY KEY (`fileID`), KEY `fileTitle` (`fileTitle`), KEY `active` (`active`), KEY `fileName` (`fileName`), KEY `fileUrl` (`fileUrl`), KEY `fileSize` (`fileSize`), KEY `priceUSD` (`priceUSD`), KEY `priceCoin` (`priceCoin`), KEY `priceLabel` (`priceLabel`), KEY `purchases` (`purchases`), KEY `userFormat` (`userFormat`), KEY `expiryPeriod` (`expiryPeriod`), KEY `lang` (`lang`), KEY `defCoin` (`defCoin`), KEY `defShow` (`defShow`), KEY `image` (`image`), KEY `imageWidth` (`imageWidth`), KEY `priceShow` (`priceShow`), 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_files`;

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

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