wp_support_ticket_message

Static

Stores support ticket message data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint(100)NO
messagetextNO
user_idint(100)NO
ticket_idint(100)NO
created_attimestampNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_support_ticket_message ( ID int(100) NOT NULL AUTO_INCREMENT, message text NOT NULL, user_id int(100) NOT NULL, ticket_id int(100) NOT NULL, 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_message`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Simple Support Tickets