wp_aza_offline_marketing_costs
StaticStores aza offline marketing costs data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| user_id | bigint(20) unsigned | NO |
| channel | varchar(100) | YES |
| from_date | int(11) unsigned | NO |
| to_date | int(11) unsigned | NO |
| cost | decimal(10,2) unsigned | YES |
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