wp_kpc_place

Static

Stores kpc place data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(10) unsignedNO
google_placevarchar(20)NO
languagevarchar(20)NO
country_namevarchar(100)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `kpc_place` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `google_place` varchar(20) NOT NULL, `language` varchar(20) NOT NULL, `country_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE

Safe to delete?

If you have uninstalled Keyword Position Checker, 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_kpc_place`;

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