wp_sm_object_permissions
VerifiedStores sm object permissions data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_sm_object_permissions` (\n `id` int NOT NULL AUTO_INCREMENT,\n `object_id` int NOT NULL,\n `object_class` varchar(25) NOT NULL,\n `user_id` int NOT NULL,\n `granted_at` datetime DEFAULT NULL,\n PRIMARY KEY (`id`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1
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_sm_object_permissions`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP Snakemember Integration