wp_aza_leads
StaticStores aza leads data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| promo_code | bigint(10) unsigned | NO |
| visitor_id | varchar(32) | NO |
| lead_timestamp | int(11) unsigned | NO |
| lead_id | bigint(20) unsigned | NO |
| lead_page_id | bigint(20) unsigned | YES |
| lead_page_author | bigint(20) unsigned | NO |
| type | varchar(20) | YES |
| status | varchar(50) | YES |
| first_cost | decimal(10,2) unsigned | YES |
| amount | decimal(10,2) unsigned | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_aza_leads ( promo_code bigint(10) unsigned NOT NULL, visitor_id varchar(32) NOT NULL, lead_timestamp int(11) unsigned NOT NULL, lead_id bigint(20) unsigned NOT NULL, lead_page_id bigint(20) unsigned, lead_page_author bigint(20) unsigned NOT NULL, type varchar(20), status varchar(50), first_cost decimal(10,2) unsigned, amount decimal(10,2) unsigned, KEY promo_code (promo_code), UNIQUE KEY lead (lead_id, type) ) $collate;");
Safe to delete?
If you have uninstalled AZEXO Advertising Analytics, 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_aza_leads`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AZEXO Advertising Analytics