wp_it_status
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑status_id | int(3) | NO |
| status_tracker | int(3) | YES |
| status_name | varchar(64) | YES |
| status_colour | varchar(6) | YES |
| status_strike | int(1) | YES |
| status_order | int(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