wp_daseopw_gone
StaticStores daseopw gone data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| url_hash | CHAR(64) | NO |
| path | VARCHAR(2048) | NO |
| deleted_at | DATETIME | NO |
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.