wp_am_license_key_meta
StaticStores additional metadata (key-value pairs) for am license key records.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| license_id | int(11) | NO |
| meta_key | varchar(150) | NO |
| meta_value | text | YES |
| admin_only | tinyint(1) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_am_license_key_meta ( id int(11) NOT NULL AUTO_INCREMENT, license_id int(11) NOT NULL, meta_key varchar(150) NOT NULL, meta_value text CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL, admin_only tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (id), UNIQUE KEY meta_key (license_id, meta_key) ) 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_license_key_meta`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from KEYMARIATOO – digital product license manager & selling tool