wp_hccoder_payza

Static

Stores hccoder payza data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
amountfloat unsignedNO
currencyvarchar(3)NO
statustextNO
firstnametextNO
lastnametextNO
emailtextNO
descriptiontextNO
summarytextNO
createdint(4) unsignedNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `hccoder_payza` ( `id` bigint(20) unsigned NOT NULL auto_increment, `amount` float unsigned NOT NULL, `currency` varchar(3) NOT NULL, `status` text NOT NULL, `firstname` text NOT NULL, `lastname` text NOT NULL, `email` text NOT NULL, `description` text NOT NULL, `summary` text NOT NULL, `created` int(4) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE

Safe to delete?

If you have uninstalled Payza Payments, 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_hccoder_payza`;

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