wp_calendarsubscriptions

Static

Stores calendarsubscriptions data created by this plugin.

CREATE TABLE Statement

CREATE TABLE calendarsubscriptions (\n id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,\n uri VARCHAR(200) NOT NULL,\n principaluri VARCHAR(100) NOT NULL,\n source TEXT,\n displayname VARCHAR(100),\n refreshrate VARCHAR(10),\n calendarorder INT(11) UNSIGNED NOT NULL DEFAULT '0',\n calendarcolor VARCHAR(10),\n striptodos TINYINT(1) NULL,\n stripalarms TINYINT(1) NULL,\n stripattachments TINYINT(1) NULL,\n lastmodified INT(11) UNSIGNED,\n UNIQUE(principaluri, uri)\n);

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

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

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