wp_aza_leads

Static

Stores aza leads data created by this plugin.

Column Definitions

ColumnTypeNullable
promo_codebigint(10) unsignedNO
visitor_idvarchar(32)NO
lead_timestampint(11) unsignedNO
lead_idbigint(20) unsignedNO
lead_page_idbigint(20) unsignedYES
lead_page_authorbigint(20) unsignedNO
typevarchar(20)YES
statusvarchar(50)YES
first_costdecimal(10,2) unsignedYES
amountdecimal(10,2) unsignedYES

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