wp_lrwc_transactions

Static

Stores lrwc transactions data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
customer_idBIGINT UNSIGNEDNO
staff_idBIGINT UNSIGNEDYES
typeVARCHAR(20)NO
pointsBIGINTNO
order_idBIGINT UNSIGNEDYES
product_idBIGINT UNSIGNEDYES
noteTEXTYES
created_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_lrwc_transactions ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, customer_id BIGINT UNSIGNED NOT NULL, staff_id BIGINT UNSIGNED, type VARCHAR(20) NOT NULL, points BIGINT NOT NULL, order_id BIGINT UNSIGNED, product_id BIGINT UNSIGNED, note TEXT, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, INDEX idx_customer (customer_id), INDEX idx_type (type), INDEX idx_created (created_at), INDEX idx_customer_type (customer_id, type) ) $charset");

Safe to delete?

If you have uninstalled 800Website Loyalty Rewards 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_lrwc_transactions`;

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

Other tables from 800Website Loyalty Rewards for WooCommerce