wp_crpay_checkouts
StaticStores crpay checkouts data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| title | VARCHAR(191) | YES |
| description | TEXT | YES |
| price | VARCHAR(100) | NO |
| currency | VARCHAR(10) | NO |
| type | VARCHAR(1) | YES |
| redirect | VARCHAR(191) | YES |
| hide_title | TINYINT | YES |
| external_reference | VARCHAR(1000) | NO |
| creation_time | DATETIME | NO |
| slug | VARCHAR(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