wp_support_ticket
StaticStores support ticket data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int(100) | NO |
| title | varchar(255) | NO |
| description | text | NO |
| category | varchar(100) | NO |
| priority | varchar(20) | NO |
| user_id | int(100) | NO |
| status | varchar(100) | NO |
| created_at | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_support_ticket ( ID int(100) NOT NULL AUTO_INCREMENT, title varchar(255) NOT NULL, description text NOT NULL, category varchar(100) NOT NULL, priority varchar(20) NOT NULL DEFAULT 'medium', user_id int(100) NOT NULL, status varchar(100) NOT NULL DEFAULT 'pending', created_at timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (ID) ) $charset;" );
Safe to delete?
If you have uninstalled Simple Support Tickets, 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_support_ticket`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Simple Support Tickets