From 6781e8e42b0eda73300a7b198eb09f280568fd06 Mon Sep 17 00:00:00 2001 From: Agent Date: Fri, 27 Mar 2026 14:03:19 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AE=A2=E5=8D=95=E8=A1=A8=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0discount=5Fmoney=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- k8s/backend/init.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/k8s/backend/init.sql b/k8s/backend/init.sql index 7360b90..7322fc3 100644 --- a/k8s/backend/init.sql +++ b/k8s/backend/init.sql @@ -80,6 +80,7 @@ CREATE TABLE "orders" ( "customer_wechat" VARCHAR(64) DEFAULT NULL, "total_amount" DECIMAL(12,2) NOT NULL DEFAULT 0, "discount_amount" DECIMAL(12,2) DEFAULT 0, + "discount_money" DECIMAL(12,2) DEFAULT 0, "actual_amount" DECIMAL(12,2) NOT NULL DEFAULT 0, "discount_rate" DECIMAL(5,2) DEFAULT 100, "status" INTEGER DEFAULT 1,