wp_edd_unuspay_transactions
StaticStores edd unuspay transactions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| order_id | BIGINT UNSIGNED | NO |
| tracking_uuid | VARCHAR(64) | NO |
| blockchain | TINYTEXT | NO |
| transaction_id | TINYTEXT | NO |
| sender_id | TINYTEXT | NO |
| receiver_id | TINYTEXT | NO |
| token_id | TINYTEXT | NO |
| amount | TINYTEXT | NO |
| status | TINYTEXT | NO |
| failed_reason | TINYTEXT | NO |
| confirmed_by | TINYTEXT | NO |
| confirmed_at | datetime | NO |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_edd_unuspay_transactions ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, order_id BIGINT UNSIGNED NOT NULL DEFAULT 0, checkout_id VARCHAR(36) NOT NULL, tracking_uuid VARCHAR(64) NOT NULL, blockchain TINYTEXT NOT NULL, transaction_id TINYTEXT NOT NULL, sender_id TINYTEXT NOT NULL, receiver_id TINYTEXT NOT NULL, token_id TINYTEXT NOT NULL, amount TINYTEXT NOT NULL, status TINYTEXT NOT NULL, failed_reason TINYTEXT NOT NULL, confirmed_by TINYTEXT NOT NULL, confirmed_at datetime NOT NULL DEFAULT '1000-01-01 00:00:00', created_at datetime NOT NULL DEFAULT '1000-01-01 00:00:00', PRIMARY KEY (id), KEY tracking_uuid_index (tracking_uuid) );
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_transactions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from UnusPay Crypto Payments For Easy Digital Downloads