wp_schedulingobjects

Static

Stores schedulingobjects data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(11) UNSIGNEDNO
principaluriVARCHAR(255)YES
calendardataMEDIUMBLOBYES
uriVARCHAR(200)YES
lastmodifiedINT(11) UNSIGNEDYES
etagVARCHAR(32)YES
sizeINT(11) UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS schedulingobjects ( id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, principaluri VARCHAR(255), calendardata MEDIUMBLOB, uri VARCHAR(200), lastmodified INT(11) UNSIGNED, etag VARCHAR(32), size INT(11) UNSIGNED NOT NULL ) ENGINE

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_schedulingobjects`;

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

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