wp_faz_banners

Static

Stores faz banners data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑banner_idbigint(20)NO
namevarchar(190)NO
slugvarchar(190)NO
statusint(11)NO
settingslongtextNO
banner_defaultint(11)NO
contentslongtextNO
target_countrieslongtextNO
priorityint(11)NO
date_createddatetimeNO
date_modifieddatetimeNO

CREATE TABLE Statement

CREATE TABLE wp_faz_banners ( banner_id bigint(20) NOT NULL AUTO_INCREMENT, name varchar(190) NOT NULL DEFAULT '', slug varchar(190) NOT NULL DEFAULT '', status int(11) NOT NULL DEFAULT 0, settings longtext NOT NULL, banner_default int(11) NOT NULL DEFAULT 0, contents longtext NOT NULL, target_countries longtext NOT NULL, priority int(11) NOT NULL DEFAULT 0, 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 (banner_id), KEY slug (slug), KEY status (status), KEY priority (priority) ) 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_banners`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from FAZ Cookie Manager