Commit e55be983 by 岳巧源

add tmp sql

parent 6e306875
Showing with 11 additions and 2 deletions
......@@ -12,4 +12,13 @@ alter table lie_shop_push_sku_log add column stock_num int unsigned default 0 no
alter table lie_shop_push_sku_log change status push_status tinyint(1) unsigned default 0 not null comment '发品状态 -1:失败 1:成功';
alter table lie_shop_push_sku_log add column init_status tinyint(1) unsigned default 0 not null comment '库存、时效初始化状态 -1:失败 1:成功' after update_time;
\ No newline at end of file
alter table lie_shop_push_sku_log add column init_status tinyint(1) unsigned default 0 not null comment '库存、时效初始化状态 -1:失败 1:成功' after update_time;
update lie_shop_push_sku_log set push_status = -1 where apply_id = "";
alter table lie_shop_push_sku_log modify column push_status tinyint(1) default 0 not null comment '发品状态 -1:失败 1:成功';
alter table lie_shop_push_sku_log modify column init_status tinyint(1) default 0 not null comment '库存、时效初始化状态 -1:失败 1:成功';
alter table lie_shop_push_sku_log change audit_failed_msg error_msg varchar(512) default '' not null comment '异常信息';
\ No newline at end of file
This diff is collapsed. Click to expand it.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment