wp_lemiho_item
StaticStores lemiho item data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int | NO |
| id_order | varchar(255) | YES |
| qty | varchar(50) | YES |
| id_product | varchar(255) | YES |
CREATE TABLE Statement
CREATE TABLE lemiho_item(ID int NOT NULL AUTO_INCREMENT, id_order varchar(255), qty varchar(50), id_product varchar(255), CONSTRAINT PK_lemiho_item PRIMARY KEY (ID))"; mysql_query($create);
Safe to delete?
If you have uninstalled Lemiho Cart, 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_lemiho_item`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Lemiho Cart