wp_cube_3d
StaticStores cube 3d data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_cube_3d` (\n `id` int NOT NULL AUTO_INCREMENT,\n `name` varchar(50) NOT NULL,\n `width` int NOT NULL,\n `faces_color` varchar(10) NOT NULL,\n `faces_image` varchar(500) NOT NULL,\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3
Safe to delete?
If you have uninstalled Cube 3D, 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_cube_3d`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.