wp_mobile_api_logs

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑log_idINT(11)NO
ad_keyINT(11)NO
post_idINT(11)NO
actionVARCHAR(255)NO
timestampTIMESTAMPNO

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.