wp_arena_categories
StaticStores arena categories data created by this plugin.
CREATE TABLE Statement
CREATE TABLE wp_arena_categories ( id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NULL, color VARCHAR(255) NULL, text_color VARCHAR(255) DEFAULT '#000000', is_default TINYINT(4) NULL, status INT(11) DEFAULT 1, created_at DATETIME DEFAULT CURRENT_TIMESTAMP)"; // Execute the SQL query to create the table require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
Safe to delete?
If you have uninstalled Arena Scheduler, 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_arena_categories`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Arena Scheduler