From 8bd47d5b4454e8a9ebc330dbb6c63ed860f85d2a Mon Sep 17 00:00:00 2001 From: YuanFeng <770153798@qq.com> Date: Sat, 14 Dec 2024 17:43:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=AD=97=E6=AE=B5sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/mysql/20241202/产品信息新增字段.sql | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sql/mysql/20241202/产品信息新增字段.sql b/sql/mysql/20241202/产品信息新增字段.sql index 0e43866..69ac3ee 100644 --- a/sql/mysql/20241202/产品信息新增字段.sql +++ b/sql/mysql/20241202/产品信息新增字段.sql @@ -12,3 +12,7 @@ ALTER TABLE oms_product_info ALTER TABLE oms_product_info ADD COLUMN `price_list` text DEFAULT NULL COMMENT 'json数组数据 [{p:100.25,c:"RMB",d:true}]'; + +-- 销售订单商品的币种 +ALTER TABLE oms_saleorder_entry + ADD COLUMN `currency` varchar(64) DEFAULT NULL COMMENT '币种 字典 currency_type' AFTER `price`; \ No newline at end of file