wp_crypto_membership
StaticStores crypto membership data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑membID | int(11) unsigned | NO |
| userID | bigint(20) unsigned | NO |
| paymentID | int(11) unsigned | NO |
| startDate | datetime | YES |
| endDate | datetime | YES |
| disabled | tinyint(1) unsigned | NO |
| recordCreated | datetime | YES |
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