wp_isarud_affiliate_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| affiliate_id | int(11) | NO |
| order_id | bigint(20) | NO |
| order_total | decimal(14,2) | YES |
| commission | decimal(14,2) | YES |
| status | enum('pending','approved','paid') | YES |
| created_at | datetime | YES |
CREATE TABLE Statement
CREATE TABLE wp_isarud_affiliate_log ( id int(11) NOT NULL AUTO_INCREMENT, affiliate_id int(11) NOT NULL, order_id bigint(20) NOT NULL, order_total decimal(14,2) DEFAULT 0, commission decimal(14,2) DEFAULT 0, status enum('pending','approved','paid') DEFAULT 'pending', created_at datetime DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY affiliate_id (affiliate_id) ) {$charset};");Safe to delete?
If you have uninstalled API Isarud Tüm Pazar Yerleri Ticaret Entegrasyonu, 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_isarud_affiliate_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from API Isarud Tüm Pazar Yerleri Ticaret Entegrasyonu