wp_incontextblog

Static

Stores incontextblog data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(10) unsignedNO
comment_numint(10) unsignedNO
urlvarchar(200)NO
star_propertytinyint(3)NO

CREATE TABLE Statement

Create table incontextblog( id int(10) unsigned primary key auto_increment not null, comment_num int(10) unsigned not null default 0, keyword varchar(200) not null, url varchar(200) not null, star_property tinyint(3) not null default 0 )"; $wpdb->query($sql_cratetable);

Safe to delete?

If you have uninstalled In-Context Comment, 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_incontextblog`;

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