wp_edd_unuspay_checkouts

Static

Stores edd unuspay checkouts data created by this plugin.

Column Definitions

ColumnTypeNullable
idVARCHAR(36)NO
order_idBIGINT UNSIGNEDNO
acceptLONGTEXTNO
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_edd_unuspay_checkouts ( id VARCHAR(36) NOT NULL, order_id BIGINT UNSIGNED NOT NULL DEFAULT 0, accept LONGTEXT NOT NULL, created_at datetime NOT NULL DEFAULT '1000-01-01 00:00:00', PRIMARY KEY (id) );

Safe to delete?

If you have uninstalled UnusPay Crypto Payments For Easy Digital Downloads, 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_edd_unuspay_checkouts`;

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

Other tables from UnusPay Crypto Payments For Easy Digital Downloads