wp_aieo_performance_tuning
StaticStores aieo performance tuning data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) UNSIGNED | NO |
| batch_size | INT(11) UNSIGNED | NO |
| processing_time | FLOAT | NO |
| total_processing_time | FLOAT | NO |
| date_recorded | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE wp_aieo_performance_tuning ( id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, batch_size INT(11) UNSIGNED NOT NULL, processing_time FLOAT NOT NULL, total_processing_time FLOAT NOT NULL, date_recorded TIMESTAMP DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) )");
Safe to delete?
If you have uninstalled AI eShop Optimizer, 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_aieo_performance_tuning`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AI eShop Optimizer