wp_crypto_membership

Static

Stores crypto membership data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑membIDint(11) unsignedNO
userIDbigint(20) unsignedNO
paymentIDint(11) unsignedNO
startDatedatetimeYES
endDatedatetimeYES
disabledtinyint(1) unsignedNO
recordCreateddatetimeYES

CREATE TABLE Statement

CREATE TABLE `crypto_membership` ( `membID` int(11) unsigned NOT NULL AUTO_INCREMENT, `userID` bigint(20) unsigned NOT NULL DEFAULT '0', `paymentID` int(11) unsigned NOT NULL DEFAULT '0', `startDate` datetime DEFAULT NULL, `endDate` datetime DEFAULT NULL, `disabled` tinyint(1) unsigned NOT NULL DEFAULT '0', `recordCreated` datetime DEFAULT NULL, PRIMARY KEY (`membID`), KEY `userID` (`userID`), KEY `paymentID` (`paymentID`), KEY `startDate` (`startDate`), KEY `endDate` (`endDate`), KEY `disabled` (`disabled`), KEY `recordCreated` (`recordCreated`) ) 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_membership`;

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

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