wp_ekc_result_log

Static

A logging table that records activity, events, or audit history.

CREATE TABLE Statement

CREATE TABLE `wp_ekc_result_log` (\n  `result_log_id` int NOT NULL AUTO_INCREMENT,\n  `result_id` int NOT NULL,\n  `log_time` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),\n  `log_team_id` int DEFAULT NULL,\n  `team1_score` double DEFAULT NULL,\n  `team2_score` double DEFAULT NULL,\n  PRIMARY KEY (`result_log_id`),\n  KEY `i_result_id` (`result_id`),\n  KEY `i_log_team_id` (`log_team_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled EKC Tournament Manager, 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_ekc_result_log`;

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

Other tables from EKC Tournament Manager