wp_zestatix_url_tracking

Static

Stores zestatix url tracking data created by this plugin.

Column Definitions

ColumnTypeNullable
idBIGINT( 20 )NO
urlTEXTNO
subdirINT( 1 )NO
FOREIGNKEYYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_zestatix_url_tracking ( id BIGINT( 20 ) NOT NULL, url TEXT NOT NULL, subdir INT( 1 ) NOT NULL, FOREIGN KEY ( id ) REFERENCES wp_zestatix_element ( id ) ON DELETE CASCADE ) {$charset_collate}" );

Safe to delete?

If you have uninstalled zeStatix, 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_zestatix_url_tracking`;

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

Other tables from zeStatix