wp_tutor_order_itemmeta

Static

Stores order records and related transaction data.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
item_idBIGINT(20) UNSIGNEDNO
meta_keyVARCHAR(255)NO
meta_valueLONGTEXTNO

CREATE TABLE Statement

CREATE TABLE wp_tutor_order_itemmeta ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, item_id BIGINT(20) UNSIGNED NOT NULL, meta_key VARCHAR(255) NOT NULL, meta_value LONGTEXT NOT NULL, PRIMARY KEY (id), KEY item_id (item_id), KEY meta_key (meta_key), CONSTRAINT fk_tutor_itemmeta FOREIGN KEY (item_id) REFERENCES wp_tutor_order_items(id) ON DELETE CASCADE ) $charset_collate;"; dbDelta( $item_meta_table );

Safe to delete?

If you have uninstalled Tutor LMS – eLearning and online course solution, 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_tutor_order_itemmeta`;

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

Other tables from Tutor LMS – eLearning and online course solution