wp_lrwc_staff
StaticStores lrwc staff data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | YES |
| user_id | BIGINT UNSIGNED | NO |
| pin | VARCHAR(10) | YES |
| role | VARCHAR(20) | YES |
| status | VARCHAR(20) | YES |
| created_at | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_lrwc_staff ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, user_id BIGINT UNSIGNED NOT NULL, pin VARCHAR(10), role VARCHAR(20) DEFAULT 'cashier', status VARCHAR(20) DEFAULT 'active', created_at DATETIME DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY (user_id) ) $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_staff`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from 800Website Loyalty Rewards for WooCommerce