Authored by chenchao

产品参数

... ... @@ -148,3 +148,27 @@ Alter table product_shop_relation add primary key(product_skn, shop_id);
-- goods_images
-- 产品参数
CREATE TABLE `product_attribute` (
`attribute_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`attribute_name` varchar(100) DEFAULT NULL,
`category_id` int(11) unsigned NOT NULL DEFAULT '0',
`sale_type` int(11) unsigned DEFAULT '0' COMMENT '1:销售属性 2:非销售属性 3:扩展属性',
`input_type` enum('radio','checkbox','select','text','textarea') DEFAULT NULL COMMENT 'radio 单选\n checkbox 复选\n select 下拉列表\n text 输入框\n textarea 多行输入',
`attribute_type` tinyint(3) unsigned DEFAULT NULL COMMENT '1 - 可销售属性\n 2 - 非可销售属性\n 3 - 扩展属性',
`is_must` enum('Y','N') DEFAULT 'N',
`is_search` enum('Y','N') DEFAULT 'Y',
`max_value_len` smallint(5) unsigned DEFAULT '50',
`is_color` enum('Y','N') DEFAULT 'N',
`is_allow_alias` enum('Y','N') DEFAULT 'N',
`order_by` int(11) unsigned DEFAULT '0',
`state` tinyint(3) unsigned DEFAULT '1',
`remark` varchar(500) DEFAULT NULL,
`attribute_values` varchar(1000) DEFAULT NULL COMMENT '红色,白色,黑色',
`belong` tinyint(3) unsigned DEFAULT '10' COMMENT '10系统\n 20商家',
`create_time` int(10) unsigned DEFAULT NULL,
`display_position` int(1) unsigned DEFAULT '1' COMMENT '1:基础商品-非销售属性 2:网销信息-上架后补全信息 3:网销信息-商品参数',
PRIMARY KEY (`attribute_id`)
) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8
... ...