Files
integral-shop/backend/sql/add_delivery_status.sql
2026-03-08 18:35:11 +08:00

4 lines
271 B
SQL
Raw Permalink 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.
-- 为订单表添加物流状态/出库状态字段
-- delivery_status: 0-未出库1-已出库
ALTER TABLE `eb_store_order` ADD COLUMN `delivery_status` tinyint(1) DEFAULT 0 COMMENT '物流状态/出库状态0-未出库1-已出库' AFTER `express_record_type`;