wp_lrwc_pending_points

Static

Stores lrwc pending points data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
customer_idBIGINT UNSIGNEDNO
staff_idBIGINT UNSIGNEDNO
invoice_numberVARCHAR(100)NO
bill_amountDECIMAL(15,2)NO
pointsBIGINTNO
statusVARCHAR(20)YES
admin_idBIGINT UNSIGNEDYES
admin_noteTEXTYES
created_atDATETIMEYES
processed_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_lrwc_pending_points ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, customer_id BIGINT UNSIGNED NOT NULL, staff_id BIGINT UNSIGNED NOT NULL, invoice_number VARCHAR(100) NOT NULL, bill_amount DECIMAL(15,2) NOT NULL, points BIGINT NOT NULL, status VARCHAR(20) DEFAULT 'pending', admin_id BIGINT UNSIGNED, admin_note TEXT, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, processed_at DATETIME, INDEX idx_customer (customer_id), INDEX idx_staff (staff_id), INDEX idx_status (status), INDEX idx_invoice (invoice_number) ) $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_pending_points`;

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

Other tables from 800Website Loyalty Rewards for WooCommerce