Showing
1 changed file
with
2 additions
and
2 deletions
@@ -242,11 +242,11 @@ alter table yh_shops.product add column source_flag enum('0', '1') default '0' | @@ -242,11 +242,11 @@ alter table yh_shops.product add column source_flag enum('0', '1') default '0' | ||
242 | 242 | ||
243 | -- 2.8 平台商品属性值表 | 243 | -- 2.8 平台商品属性值表 |
244 | 244 | ||
245 | - CREATE TABLE yh_shops.product_attribute_property_values ( | 245 | +CREATE TABLE yh_shops.product_attribute_property_values ( |
246 | `id` int(11) unsigned NOT NULL AUTO_INCREMENT, | 246 | `id` int(11) unsigned NOT NULL AUTO_INCREMENT, |
247 | `product_skn` int(11) unsigned NOT NULL, | 247 | `product_skn` int(11) unsigned NOT NULL, |
248 | `attribute_id` int(11) unsigned NOT NULL COMMENT '品类属性ID', | 248 | `attribute_id` int(11) unsigned NOT NULL COMMENT '品类属性ID', |
249 | - `attribute_value_id` int(11) unsigned NOT NULL COMMENT '品类属性值ID', | 249 | + `attribute_value_id` varchar(128) COMMENT '品类属性值ID 多个用逗号分隔', |
250 | `display_position` int(1) unsigned DEFAULT '1' COMMENT '1:基础商品-非销售属性 2:网销信息-上架后补全信息 3:网销信息-商品参数', | 250 | `display_position` int(1) unsigned DEFAULT '1' COMMENT '1:基础商品-非销售属性 2:网销信息-上架后补全信息 3:网销信息-商品参数', |
251 | PRIMARY KEY (`id`), | 251 | PRIMARY KEY (`id`), |
252 | KEY `attribute_pro_skn_attrid` (`product_skn`,`attribute_id`) | 252 | KEY `attribute_pro_skn_attrid` (`product_skn`,`attribute_id`) |
-
Please register or login to post a comment