/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `wplc_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wplc_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

INSERT INTO `wplc_woocommerce_attribute_taxonomies` VALUES (1,'gift-00-edible','Gift - Edible','select','menu_order',0);
INSERT INTO `wplc_woocommerce_attribute_taxonomies` VALUES (2,'gift-00-vape','Gift - Vape Cart','select','menu_order',0);
INSERT INTO `wplc_woocommerce_attribute_taxonomies` VALUES (3,'gift-00-pre-roll','Gift - Pre-Roll','select','menu_order',0);
INSERT INTO `wplc_woocommerce_attribute_taxonomies` VALUES (4,'gift-00-flower','Gift - Flower','select','menu_order',0);
INSERT INTO `wplc_woocommerce_attribute_taxonomies` VALUES (5,'gift-00-wax','Gift - Wax','select','menu_order',0);
INSERT INTO `wplc_woocommerce_attribute_taxonomies` VALUES (6,'gift-vape-disposable','Gift - Vape Disposable','select','menu_order',0);
INSERT INTO `wplc_woocommerce_attribute_taxonomies` VALUES (7,'gift-premium-flower','Gift - Premium Flower','select','menu_order',0);
INSERT INTO `wplc_woocommerce_attribute_taxonomies` VALUES (8,'private-reserve-flower-gifts','Private Reserve Flower Gifts','select','menu_order',0);

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

