init
This commit is contained in:
8
doc/sql/goods_status.sql
Normal file
8
doc/sql/goods_status.sql
Normal file
@ -0,0 +1,8 @@
|
||||
CREATE TABLE `goods_status`
|
||||
(
|
||||
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||||
`api_id` int(255) DEFAULT NULL COMMENT '三方接口',
|
||||
`api_product_id` int(255) DEFAULT NULL COMMENT '三方商品id',
|
||||
`status` int(10) DEFAULT NULL COMMENT '商品状态 0=上架 1=下架',
|
||||
primary key (id)
|
||||
) COMMENT '商品状态';
|
Reference in New Issue
Block a user