wp_zestatix_url_tracking
StaticStores zestatix url tracking data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| id | BIGINT( 20 ) | NO |
| url | TEXT | NO |
| subdir | INT( 1 ) | NO |
| FOREIGN | KEY | YES |
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