wp_zestatix_loaded

Static

Stores zestatix loaded data created by this plugin.

Column Definitions

ColumnTypeNullable
elemBIGINT( 20 )NO
userINT( 10 )NO
urlSMALLINTNO
FOREIGNKEYYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_zestatix_loaded ( elem BIGINT( 20 ) NOT NULL, user INT( 10 ) NOT NULL, url SMALLINT NOT NULL, FOREIGN KEY ( elem ) 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_loaded`;

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

Other tables from zeStatix