wp_support_ticket

Static

Stores support ticket data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint(100)NO
titlevarchar(255)NO
descriptiontextNO
categoryvarchar(100)NO
priorityvarchar(20)NO
user_idint(100)NO
statusvarchar(100)NO
created_attimestampNO

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