wp_am_licensed_products

Static

Stores product records and related data.

Column Definitions

ColumnTypeNullable
🔑config_idint(11)NO
product_idint(11)NO
variation_idint(11)NO
activetinyint(1)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_am_licensed_products ( config_id int(11) NOT NULL AUTO_INCREMENT, product_id int(11) NOT NULL DEFAULT 0, variation_id int(11) NOT NULL DEFAULT 0, active tinyint(1) NOT NULL DEFAULT 1, PRIMARY KEY (config_id), UNIQUE KEY product_id (product_id, variation_id) ) ENGINE

Safe to delete?

If you have uninstalled KEYMARIATOO – digital product license manager & selling tool, 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_am_licensed_products`;

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

Other tables from KEYMARIATOO – digital product license manager & selling tool