wp_it_status

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑status_idint(3)NO
status_trackerint(3)YES
status_namevarchar(64)YES
status_colourvarchar(6)YES
status_strikeint(1)YES
status_orderint(3)YES

CREATE TABLE Statement

CREATE TABLE wp_it_status ( status_id int(3) NOT NULL AUTO_INCREMENT, status_tracker int(3), status_name varchar(64), status_colour varchar(6), status_strike int(1), status_order int(3), UNIQUE KEY status_id (status_id) );

Safe to delete?

If you have uninstalled WP Simple Tracker, 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_it_status`;

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

Other tables from WP Simple Tracker