wp_happs_sellbtc_orders

Verified

Stores order records and related transaction data.

CREATE TABLE Statement

CREATE TABLE `wp_happs_sellbtc_orders` (\n  `NO` int NOT NULL AUTO_INCREMENT,\n  `happs-FirstName` varchar(255) DEFAULT NULL,\n  `happs-LastName` varchar(255) DEFAULT NULL,\n  `happs-Email` varchar(255) DEFAULT NULL,\n  `happs-Phone` varchar(255) DEFAULT NULL,\n  `happs-AddressLine1` varchar(255) DEFAULT NULL,\n  `happs-AddressLine2` varchar(255) DEFAULT NULL,\n  `happs-City` varchar(255) DEFAULT NULL,\n  `happs-State` varchar(255) DEFAULT NULL,\n  `happs-Country` varchar(255) DEFAULT NULL,\n  `happs-CustomMessage` varchar(255) DEFAULT NULL,\n  `happs-UntitledInput1` varchar(255) DEFAULT NULL,\n  `happs-UntitledInput2` varchar(255) DEFAULT NULL,\n  `hidden-calc-from` varchar(255) DEFAULT NULL,\n  `hidden-calc-to` varchar(255) DEFAULT NULL,\n  `hidden-calc-amount` varchar(255) DEFAULT NULL,\n  `hidden-calc-rate` varchar(255) DEFAULT NULL,\n  `hidden-calc-fee` varchar(255) DEFAULT NULL,\n  `hidden-calc-getamount` varchar(255) DEFAULT NULL,\n  PRIMARY KEY (`NO`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci

Safe to delete?

If you have uninstalled Sell BTC – Cryptocurrency Selling Calculator, 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_happs_sellbtc_orders`;

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