wp_completed

Static

Stores completed data created by this plugin.

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `completed` (\n\t\t\t\t`path` varchar(500) not null,\n\t\t\t\t`expiration` integer(11),\n\t\t\t\tPRIMARY KEY (`path`)\n\t\t\t)\n\t\t");

Safe to delete?

If you have uninstalled Backup, Restore and Migrate your sites with XCloner, 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_completed`;

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

Other tables from Backup, Restore and Migrate your sites with XCloner