wp_it_comment
StaticStores it comment data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑comment_id | int(11) | NO |
| comment_issue | int(11) | YES |
| comment_poster | int(11) | YES |
| comment_body | text | YES |
| comment_time | int(11) | YES |
CREATE TABLE Statement
CREATE TABLE wp_it_comment ( comment_id int(11) NOT NULL AUTO_INCREMENT, comment_issue int(11), comment_poster int(11), comment_body text, comment_time int(11), UNIQUE KEY comment_id (comment_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_comment`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP Simple Tracker