wp_faz_cookie_categories
StaticStores faz cookie categories data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑category_id | bigint(20) | NO |
| name | text | NO |
| slug | varchar(190) | NO |
| description | longtext | NO |
| prior_consent | int(11) | NO |
| visibility | int(11) | NO |
| priority | int(11) | NO |
| sell_personal_data | int(11) | NO |
| share_personal_data | int(11) | NO |
| meta | longtext | YES |
| date_created | datetime | NO |
| date_modified | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_faz_cookie_categories ( category_id bigint(20) NOT NULL AUTO_INCREMENT, name text NOT NULL, slug varchar(190) NOT NULL DEFAULT '', description longtext NOT NULL, prior_consent int(11) NOT NULL default 0, visibility int(11) NOT NULL default 1, priority int(11) NOT NULL default 0, sell_personal_data int(11) NOT NULL default 1, share_personal_data int(11) NOT NULL default 1, meta longtext NULL, 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 (category_id), UNIQUE KEY slug (slug) ) 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_cookie_categories`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from FAZ Cookie Manager