wp_am_generator_rules
StaticStores am generator rules data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑rule_id | int(11) | NO |
| product_id | int(11) | NO |
| variation_id | int(11) | NO |
| prefix | varchar(100) | YES |
| chunks_number | int(11) | NO |
| chunks_length | int(11) | NO |
| suffix | varchar(100) | YES |
| max_instance_number | int(11) | YES |
| valid | int(11) | YES |
| active | tinyint(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