Resource View Count - ThemesCorp.com

Resource View Count - ThemesCorp.com 1.0.0

No permission to download
Sorry for resurrecting an old thread, but is this safe to remove from an XF 2.1 installation? The add-on was not removed before upgrading from 1.x. several years back.
 
In case anyone else had this leftover from an old install and you want to roll the old view count data in to the current count, here are the SQL commands I ended up using:

UPDATE xf_rm_resource
SET view_count = view_count + view_count__conflict;

ALTER TALBE xf_rm_resource
DROP COLUMN view_count__conflict;
 
Top Bottom