wp_aza_calltracking

Static

Stores aza calltracking data created by this plugin.

Column Definitions

ColumnTypeNullable
promo_codebigint(10) unsignedNO
phonevarchar(100)YES
caller_phonevarchar(100)YES
call_timestampint(11) unsignedYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_aza_calltracking ( promo_code bigint(10) unsigned NOT NULL, phone varchar(100), caller_phone varchar(100), call_timestamp int(11) unsigned, UNIQUE KEY promo_code (promo_code), KEY caller_phone (caller_phone), KEY phone (phone) ) $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_calltracking`;

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

Other tables from AZEXO Advertising Analytics