wp_ekc_team

Static

Stores ekc team data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_ekc_team` (\n  `team_id` int NOT NULL AUTO_INCREMENT,\n  `tournament_id` int NOT NULL,\n  `name` varchar(500) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `country` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `club` varchar(500) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `is_active` bit(1) DEFAULT NULL,\n  `email` varchar(500) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `phone` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `registration_date` datetime DEFAULT NULL,\n  `camping_count` int DEFAULT NULL,\n  `breakfast_count` int DEFAULT NULL,\n  `is_registration_fee_paid` bit(1) DEFAULT NULL,\n  `is_on_wait_list` bit(1) DEFAULT NULL,\n  `registration_order` double DEFAULT NULL,\n  `is_checked_in` bit(1) DEFAULT NULL,\n  `seeding_score` double DEFAULT NULL,\n  `initial_score` double DEFAULT NULL,\n  `virtual_rank` int DEFAULT NULL,\n  `shareable_link_id` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  PRIMARY KEY (`team_id`),\n  KEY `i_tournament_id` (`tournament_id`),\n  KEY `i_shareable_link_id` (`shareable_link_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_team`;

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

Other tables from EKC Tournament Manager