wp_af_links_activity
StaticStores af links activity data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| link_id | text | NO |
| browser | text | NO |
| referer | text | NO |
| os | text | NO |
| platform | text | NO |
| lang | text | NO |
| created_date | datetime | NO |
| created_date_gmt | datetime | NO |
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.