wp_cookies
StaticStores cookies data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | integer | YES |
| cookie_hash | TEXT | YES |
| source_domain | TEXT | YES |
| source_url | TEXT | YES |
| name | TEXT | YES |
| value | TEXT | YES |
| domain | TEXT | YES |
| path | TEXT | YES |
| expires | TEXT | YES |
| expire_timestamp | INTEGER | YES |
| cookie_send_time | INTEGER | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS cookies (id integer PRIMARY KEY AUTOINCREMENT, cookie_hash TEXT UNIQUE, source_domain TEXT, source_url TEXT, name TEXT, value TEXT, domain TEXT, path TEXT, expires TEXT, expire_timestamp INTEGER, cookie_send_time 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_cookies`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from GNA Crawling Errors