wp_mobile_api_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑log_id | INT(11) | NO |
| ad_key | INT(11) | NO |
| post_id | INT(11) | NO |
| action | VARCHAR(255) | NO |
| timestamp | TIMESTAMP | NO |
CREATE TABLE Statement
CREATE TABLE wp_mobile_api_logs ( log_id INT(11) NOT NULL AUTO_INCREMENT, ad_key INT(11) NOT NULL, post_id INT(11) NOT NULL, action VARCHAR(255) NOT NULL, timestamp TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (log_id) );
Safe to delete?
If you have uninstalled Ad Integration for mobile.de API, 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_mobile_api_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.