wp_faz_cookies
StaticStores faz cookies data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑cookie_id | bigint(20) | NO |
| name | varchar(190) | NO |
| slug | varchar(190) | NO |
| description | longtext | NO |
| duration | text | NO |
| domain | varchar(190) | NO |
| category | bigint(20) | NO |
| type | text | NO |
| discovered | int(11) | NO |
| url_pattern | varchar(190) | YES |
| meta | longtext | YES |
| date_created | datetime | NO |
| date_modified | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_faz_cookies ( cookie_id bigint(20) NOT NULL AUTO_INCREMENT, name varchar(190) NOT NULL DEFAULT '', slug varchar(190) NOT NULL DEFAULT '', description longtext NOT NULL, duration text NOT NULL, domain varchar(190) NOT NULL DEFAULT '', category bigint(20) NOT NULL, type text NOT NULL, discovered int(11) NOT NULL default 0, url_pattern varchar(190) NULL default '', meta longtext, date_created datetime NOT NULL DEFAULT '0000-00-00 00:00:00', date_modified datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (cookie_id), KEY category (category), KEY name (name) ) ENGINE
Safe to delete?
If you have uninstalled FAZ Cookie Manager, 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_faz_cookies`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from FAZ Cookie Manager