wp_arena
StaticStores arena data created by this plugin.
CREATE TABLE Statement
CREATE TABLE wp_arena ( id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255), interval_time INT(11) NULL, start_time VARCHAR(255) NULL, end_time VARCHAR(255) NULL, 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`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Arena Scheduler