wp_it_type
StaticStores it type data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑type_id | int(3) | NO |
| type_tracker | int(3) | YES |
| type_name | varchar(64) | YES |
| type_colour | varchar(6) | YES |
| type_order | int(3) | YES |
CREATE TABLE Statement
CREATE TABLE wp_it_type ( type_id int(3) NOT NULL AUTO_INCREMENT, type_tracker int(3), type_name varchar(64), type_colour varchar(6), type_order int(3), UNIQUE KEY type_id (type_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_type`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP Simple Tracker