/home3/bmscom/mainjeelectronics.com.pk/wpzf_woocommerce_attribute_taxonomiesbv.sql
SET NAMES 'utf8mb4';
set FOREIGN_KEY_CHECKS = 0;
SET SESSION sql_mode = "";
DROP TABLE IF EXISTS `wpzf_woocommerce_attribute_taxonomies`;
CREATE TABLE IF NOT EXISTS `wpzf_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_label` varchar(200) DEFAULT NULL,
  `attribute_type` varchar(20) NOT NULL,
  `attribute_orderby` varchar(20) NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
REPLACE INTO `wpzf_woocommerce_attribute_taxonomies` (`attribute_id`,`attribute_label`,`attribute_name`,`attribute_orderby`,`attribute_public`,`attribute_type`) VALUES (
'1','storage','storage','menu_order','0','select'),(
'2','size','size','menu_order','0','select'),(
'3','color','color','menu_order','0','select'),(
'4','image','image','menu_order','0','select');