wp_adfox_utm

Static

Stores adfox utm data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
shorturltextNO
longurltextNO

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.