wp_schedulingobjects
StaticStores schedulingobjects data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) UNSIGNED | NO |
| principaluri | VARCHAR(255) | YES |
| calendardata | MEDIUMBLOB | YES |
| uri | VARCHAR(200) | YES |
| lastmodified | INT(11) UNSIGNED | YES |
| etag | VARCHAR(32) | YES |
| size | INT(11) UNSIGNED | NO |
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