java-mall/sql/shop/dev/20251022_ddl.sql

3 lines
244 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

alter table shop_order_base add column operate_flag varchar(1) not null default '0' comment '异常订单操作流程,0-可操作自行发货1-可操作订单完成2-订单完成不可操作';
update shop_order_base set operate_flag='2';