wp_am_generator_rules

Static

Stores am generator rules data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑rule_idint(11)NO
product_idint(11)NO
variation_idint(11)NO
prefixvarchar(100)YES
chunks_numberint(11)NO
chunks_lengthint(11)NO
suffixvarchar(100)YES
max_instance_numberint(11)YES
validint(11)YES
activetinyint(1)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_am_generator_rules ( rule_id int(11) NOT NULL AUTO_INCREMENT, product_id int(11) NOT NULL DEFAULT 0, variation_id int(11) NOT NULL DEFAULT 0, prefix varchar(100) DEFAULT NULL, chunks_number int(11) NOT NULL DEFAULT 4, chunks_length int(11) NOT NULL DEFAULT 4, suffix varchar(100) DEFAULT NULL, max_instance_number int(11) DEFAULT 1, valid int(11) DEFAULT 365, active tinyint(1) NOT NULL DEFAULT 1, PRIMARY KEY (rule_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_generator_rules`;

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

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