wp_content
StaticStores content data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| req_url | text | NO |
| blogid | int | NO |
| postid | int | NO |
| title | text | YES |
| mobile | BLOB | YES |
| desktop | BLOB | YES |
| m_header | text | YES |
| d_header | text | YES |
| m_modified | text | YES |
| d_modified | text | YES |
| m_expire | datetime | YES |
| d_expire | datetime | YES |
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