wp_it_type

Static

Stores it type data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑type_idint(3)NO
type_trackerint(3)YES
type_namevarchar(64)YES
type_colourvarchar(6)YES
type_orderint(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