wp_arena_scheduled_timesheet

Static

Stores arena scheduled timesheet data created by this plugin.

CREATE TABLE Statement

CREATE TABLE wp_arena_scheduled_timesheet ( id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY, arena_id INT(10) UNSIGNED, timeslot_id BIGINT(15) UNSIGNED, category INT(10) UNSIGNED, comment VARCHAR(255) NULL, scheduled_date DATE, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY (arena_id) REFERENCES {$arena_table}(id) ON DELETE CASCADE ON UPDATE CASCADE, FOREIGN KEY (category) REFERENCES {$arena_categories}(id) ON DELETE CASCADE ON UPDATE CASCADE)"; // 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_scheduled_timesheet`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Arena Scheduler