wp_qss

Live

Stores qss data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_qss` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `blog_id` int NOT NULL,\n  `post` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,\n  `URL` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,\n  `url_hash` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,\n  `seo` text CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,\n  `date_time` datetime NOT NULL,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `url_hash` (`url_hash`) USING BTREE,\n  KEY `blog_id_url_hash` (`blog_id`,`url_hash`) USING BTREE\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled SEO Plugin by Squirrly SEO, 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_qss`;

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

Other tables from SEO Plugin by Squirrly SEO