wp_gift_track_report

Static

Stores gift track report data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20)NO
product_idBIGINT(20)YES
rule_idBIGINT(20)YES
user_idBIGINT(20)YES
order_idBIGINT(20)YES
reg_dateTIMESTAMPNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_gift_track_report ( id BIGINT(20) NOT NULL AUTO_INCREMENT, product_id BIGINT(20), rule_id BIGINT(20), user_id BIGINT(20), order_id BIGINT(20), reg_date TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (id) ) $charset_collate"; $result = $wpdb->query($create);

Safe to delete?

If you have uninstalled GIFTiT – Free Gifts 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_gift_track_report`;

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