wp_aza_targets

Static

Stores aza targets data created by this plugin.

Column Definitions

ColumnTypeNullable
promo_codebigint(10) unsignedNO
visitor_idvarchar(32)NO
target_timestampint(11) unsignedNO
target_idbigint(20) unsignedNO
target_page_idbigint(20) unsignedYES
target_page_authorbigint(20) unsignedNO
typevarchar(20)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_aza_targets ( promo_code bigint(10) unsigned NOT NULL, visitor_id varchar(32) NOT NULL, target_timestamp int(11) unsigned NOT NULL, target_id bigint(20) unsigned NOT NULL, target_page_id bigint(20) unsigned, target_page_author bigint(20) unsigned NOT NULL, type varchar(20), KEY promo_code (promo_code), UNIQUE KEY target (target_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_targets`;

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

Other tables from AZEXO Advertising Analytics