wp_urls
StaticStores urls data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | integer | YES |
| in_process | bool | YES |
| processed | bool | YES |
| priority_level | integer | YES |
| distinct_hash | TEXT | YES |
| link_raw | TEXT | YES |
| linkcode | TEXT | YES |
| linktext | TEXT | YES |
| refering_url | TEXT | YES |
| url_rebuild | TEXT | YES |
| is_redirect_url | bool | YES |
| url_link_depth | integer | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS urls (id integer PRIMARY KEY AUTOINCREMENT, in_process bool DEFAULT 0, processed bool DEFAULT 0, priority_level integer, distinct_hash TEXT UNIQUE, link_raw TEXT, linkcode TEXT, linktext TEXT, refering_url TEXT, url_rebuild TEXT, is_redirect_url bool, url_link_depth integer);
Safe to delete?
If you have uninstalled GNA Crawling Errors, 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_urls`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from GNA Crawling Errors