wp_content

Static

Stores content data created by this plugin.

Column Definitions

ColumnTypeNullable
req_urltextNO
blogidintNO
postidintNO
titletextYES
mobileBLOBYES
desktopBLOBYES
m_headertextYES
d_headertextYES
m_modifiedtextYES
d_modifiedtextYES
m_expiredatetimeYES
d_expiredatetimeYES

CREATE TABLE Statement

CREATE TABLE content ( key text UNIQUE NOT NULL, req_url text NOT NULL, blogid int NOT NULL, postid int NOT NULL, title text, mobile BLOB, desktop BLOB, m_header text, d_header text, m_modified text, d_modified text, m_expire datetime, d_expire datetime );

Safe to delete?

If you have uninstalled Yasakani Cache, 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_content`;

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

Other tables from Yasakani Cache