wp_aza_targets
StaticStores aza targets data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| promo_code | bigint(10) unsigned | NO |
| visitor_id | varchar(32) | NO |
| target_timestamp | int(11) unsigned | NO |
| target_id | bigint(20) unsigned | NO |
| target_page_id | bigint(20) unsigned | YES |
| target_page_author | bigint(20) unsigned | NO |
| type | varchar(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