wp_iwptp_sessions

Static

Stores session data for tracking user or visitor state.

Column Definitions

ColumnTypeNullable
🔑session_idBIGINT UNSIGNEDNO
session_keychar(32)NO
session_valuelongtextNO
session_expiryBIGINT UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE wp_iwptp_sessions ( session_id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, session_key char(32) NOT NULL, session_value longtext NOT NULL, session_expiry BIGINT UNSIGNED NOT NULL, PRIMARY KEY (session_id), UNIQUE KEY session_key (session_key) ) $collate"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php');

Safe to delete?

If you have uninstalled TABLEiT – Product Table for WooCommerce, 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_iwptp_sessions`;

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