wp_aza_offline_marketing_costs

Static

Stores aza offline marketing costs data created by this plugin.

Column Definitions

ColumnTypeNullable
user_idbigint(20) unsignedNO
channelvarchar(100)YES
from_dateint(11) unsignedNO
to_dateint(11) unsignedNO
costdecimal(10,2) unsignedYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_aza_offline_marketing_costs ( user_id bigint(20) unsigned NOT NULL, channel varchar(100), from_date int(11) unsigned NOT NULL, to_date int(11) unsigned NOT NULL, cost decimal(10,2) unsigned, UNIQUE KEY cost (user_id, channel, from_date, to_date) ) $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_offline_marketing_costs`;

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

Other tables from AZEXO Advertising Analytics