wp_af_links_activity

Static

Stores af links activity data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
link_idtextNO
browsertextNO
referertextNO
ostextNO
platformtextNO
langtextNO
created_datedatetimeNO
created_date_gmtdatetimeNO

CREATE TABLE Statement

CREATE TABLE wp_af_links_activity ( id bigint(20) NOT NULL AUTO_INCREMENT, link_id text NOT NULL, browser text NOT NULL, referer text NOT NULL, os text NOT NULL, platform text NOT NULL, lang text NOT NULL, created_date datetime NOT NULL, created_date_gmt datetime NOT NULL, PRIMARY KEY (id) ) $charset_collate;"; } } Affiliate_Links_install::init();

Safe to delete?

If you have uninstalled Affiliate Links – Link Cloaking and Management, 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_af_links_activity`;

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