wp_easyadpicker_materials

Static

Stores easyadpicker materials data created by this plugin.

Column Definitions

ColumnTypeNullable
material_idint(11)NO
advertiser_idint(11)NO
titlevarchar(100)NO
materialvarchar(255)NO
linkvarchar(255)NO
displayvarchar(10)NO
widthint(3)NO
heightint(3)NO
datetimestampNO

CREATE TABLE Statement

CREATE TABLE `wp_easyadpicker_materials` ( `material_id` int(11) NOT NULL, `advertiser_id` int(11) NOT NULL, `title` varchar(100) NOT NULL, `material` varchar(255) NOT NULL, `link` varchar(255) NOT NULL, `display` varchar(10) NOT NULL, `width` int(3) NOT NULL, `height` int(3) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE

Safe to delete?

If you have uninstalled Easy Ad Picker, 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_easyadpicker_materials`;

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

Other tables from Easy Ad Picker