wp_iq_rpw_logs

Static

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

Column Definitions

ColumnTypeNullable
🔑idintNO
uid_fatherint(20)NO
uid_targetint(20)NO
sumdoubleYES
currencyvarchar(32)NO
uptinyint(2)NO
dateint(20)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_iq_rpw_logs` ( `id` int (20) NOT NULL AUTO_INCREMENT, `uid_father` int(20) NOT NULL DEFAULT 0, `uid_target` int(20) NOT NULL DEFAULT 0, `sum` double DEFAULT 0, `currency` varchar(32) NOT NULL DEFAULT '', `up` tinyint(2) NOT NULL DEFAULT 1, `date` int(20) NOT NULL DEFAULT 0, PRIMARY KEY `id` (`id`) );

Safe to delete?

If you have uninstalled IQ Referral System for WooCommerce, 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_iq_rpw_logs`;

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

Other tables from IQ Referral System for WooCommerce