wp_dealbao_goods

Static

Stores dealbao goods data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑goods_idint(10) UNSIGNEDNO
spuvarchar(24)YES
goods_nametextNO
goods_ad_wordstextYES
category_idvarchar(200)NO
spec_nametextYES
spec_valuetextYES
goods_imagevarchar(255)NO
goods_bodymediumtextNO
mobile_bodymediumtextYES
sku_datamediumtextYES
gallery_idsmediumtextYES
goods_pricedecimal(10, 2)NO
goods_marketpricedecimal(12, 2)NO
goods_storageint(10) UNSIGNEDYES
weightint(10) UNSIGNEDYES
goods_storage_alarmint(10) UNSIGNEDYES
goods_upload_typeint(2) UNSIGNEDYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_dealbao_goods`( `goods_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '商品公共表id', `spu` varchar(24) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '10位不重复SPU', `goods_name` text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '商品名称', `goods_ad_words` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '商品广告词', `category_id` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '商品分类', `spec_name` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '规格名称', `spec_value` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '规格值', `goods_image` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '商品主图', `goods_body` mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '商品内容', `mobile_body` mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '手机端商品描述', `sku_data` mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '商品规格详情', `gallery_ids` mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '商品多图片', `goods_price` decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '商品价格', `goods_marketprice` decimal(12, 2) NOT NULL DEFAULT 0.00 COMMENT '市场价', `goods_storage` int(10) UNSIGNED NULL DEFAULT NULL COMMENT '商品库存', `weight` int(10) UNSIGNED NULL DEFAULT NULL COMMENT '商品重量', `goods_storage_alarm` int(10) UNSIGNED NULL DEFAULT 0 COMMENT '库存报警值', `goods_upload_type` int(2) UNSIGNED NULL DEFAULT 0 COMMENT '商品上传状态 0是待上传,1是上传成功', PRIMARY KEY (`goods_id`) USING BTREE, INDEX `category_id`(`category_id`) USING BTREE, INDEX `spu`(`spu`) USING BTREE, INDEX `goods_stoage`(`goods_storage`) USING BTREE )DEFAULT CHARSET

Safe to delete?

If you have uninstalled Esell, 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_dealbao_goods`;

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

Other tables from Esell