wp_ahm_withdraws

Static

Stores ahm withdraws data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
uidint(11)NO
dateint(11)NO
amountdoubleNO
payment_methodvarchar(255)NO
payment_accountvarchar(255)NO
statusint(11)NO
execution_dateint(11)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_ahm_withdraws` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT '0', `date` int(11) NOT NULL DEFAULT '0', `amount` double NOT NULL DEFAULT '0', `payment_method` varchar(255) NOT NULL, `payment_account` varchar(255) NOT NULL, `status` int(11) NOT NULL DEFAULT '1', `execution_date` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE

Safe to delete?

If you have uninstalled Premium Packages – Sell Digital Products Securely, 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_ahm_withdraws`;

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

Other tables from Premium Packages – Sell Digital Products Securely