wp_hccoder_payza
StaticStores hccoder payza data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| amount | float unsigned | NO |
| currency | varchar(3) | NO |
| status | text | NO |
| firstname | text | NO |
| lastname | text | NO |
| text | NO | |
| description | text | NO |
| summary | text | NO |
| created | int(4) unsigned | NO |
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.