新增删除seller接口
This commit is contained in:
@@ -28,7 +28,9 @@ CREATE TABLE seller_listing_image (
|
||||
sort_order INT DEFAULT 0 COMMENT '排序',
|
||||
is_selected INT(1) DEFAULT 0 COMMENT '是否选中: 0-未选中, 1-选中(仅product有效)',
|
||||
create_time DATETIME DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
INDEX idx_listing_id (listing_id)
|
||||
deleted INT(1) DEFAULT 0 COMMENT '是否删除:0-否,1-是',
|
||||
INDEX idx_listing_id (listing_id),
|
||||
INDEX idx_deleted (deleted)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品图片表';
|
||||
|
||||
-- 设计师表
|
||||
|
||||
Reference in New Issue
Block a user