wp_crpay_checkouts

Static

Stores crpay checkouts data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTNO
titleVARCHAR(191)YES
descriptionTEXTYES
priceVARCHAR(100)NO
currencyVARCHAR(10)NO
typeVARCHAR(1)YES
redirectVARCHAR(191)YES
hide_titleTINYINTYES
external_referenceVARCHAR(1000)NO
creation_timeDATETIMENO
slugVARCHAR(191)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS crpay_checkouts (id INT NOT NULL AUTO_INCREMENT, title VARCHAR(191), description TEXT, price VARCHAR(100) NOT NULL, currency VARCHAR(10) NOT NULL, type VARCHAR(1), redirect VARCHAR(191), hide_title TINYINT, external_reference VARCHAR(1000) NOT NULL DEFAULT "", creation_time DATETIME NOT NULL, slug VARCHAR(191), PRIMARY KEY (id)) ENGINE

Safe to delete?

If you have uninstalled CryptoPayment Gateway, 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_crpay_checkouts`;

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

Other tables from CryptoPayment Gateway