wp_crlms_order_items

Static

Stores order records and related transaction data.

CREATE TABLE Statement

CREATE TABLE `wp_crlms_order_items` (\n  `order_item_id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `order_item_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `order_id` bigint unsigned NOT NULL,\n  PRIMARY KEY (`order_item_id`),\n  KEY `order_id` (`order_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Creator LMS – WordPress LMS Plugin for Coaches & Course Creators, 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_crlms_order_items`;

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

Other tables from Creator LMS – WordPress LMS Plugin for Coaches & Course Creators