wp_orders
StaticStores orders data created by this plugin.
CREATE TABLE Statement
CREATE TABLE orders( * id int primary key auto_increment, * person_id int not null, * cost decimal(10,2), * total decimal(10,2) * );
Safe to delete?
If you have uninstalled WP Snakemember Integration, 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_orders`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP Snakemember Integration