wp_displayembeddedvideosbydb

Verified

Stores displayembeddedvideosbydb data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_displayembeddedvideosbydb` (\n  `id` mediumint NOT NULL AUTO_INCREMENT,\n  `vid_url` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `post_url` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `post_title` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `post_parent` bigint NOT NULL,\n  `post_id` bigint NOT NULL,\n  `post_cat` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `post_tag` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `post_time` datetime NOT NULL,\n  `vid_provider` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  UNIQUE KEY `id` (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Display Embedded Videos by D.Biota, 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_displayembeddedvideosbydb`;

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