wp_adfox_utm
StaticStores adfox utm data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| shorturl | text | NO |
| longurl | text | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_adfox_utm` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `shorturl` text NOT NULL, `longurl` text NOT NULL, PRIMARY KEY (id) ) ENGINE
Safe to delete?
If you have uninstalled Adsfox.com UTM Builder Adsfox, 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_adfox_utm`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.