wp_tutor_order_itemmeta
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| item_id | BIGINT(20) UNSIGNED | NO |
| meta_key | VARCHAR(255) | NO |
| meta_value | LONGTEXT | NO |
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