wp_daseopw_gone

Static

Stores daseopw gone data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
url_hashCHAR(64)NO
pathVARCHAR(2048)NO
deleted_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_daseopw_gone ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, url_hash CHAR(64) NOT NULL COMMENT 'SHA-256 of normalized path', path VARCHAR(2048) NOT NULL DEFAULT '', deleted_at DATETIME NOT NULL, PRIMARY KEY (id), UNIQUE KEY uq_hash (url_hash) ) $cc;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );

Safe to delete?

If you have uninstalled DenArt – SEO Wipe (HTTP 410 Gone), 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_daseopw_gone`;

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