wp_tablename

Static

Stores tablename data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDINTYES
DateDATETIMEYES
TypeTINYINTYES
SizeVARCHAR(11)YES
UnitTINYINTYES
PageVARCHAR(128)YES
ReferrerVARCHAR(256)YES
IPINT UNSIGNEDYES
BrowserVARCHAR(256)YES
SrcVARCHAR(128)YES
DebugVARCHAR(64)YES

CREATE TABLE Statement

CREATE TABLE `TABLENAME` ( ID INT PRIMARY KEY AUTO_INCREMENT, Date DATETIME, Type TINYINT, Size VARCHAR(11), Unit TINYINT, Page VARCHAR(128), Referrer VARCHAR(256), IP INT UNSIGNED, Browser VARCHAR(256), Src VARCHAR(128), Debug VARCHAR(64) );

Safe to delete?

If you have uninstalled Ad Logger, 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_tablename`;

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