修复表【WeChatTransactionComponentOrder】微信交易订单,表增加【paymentId】字段。

This commit is contained in:
JianWeie
2022-07-04 15:40:47 +08:00
parent bb18388dd2
commit 4151efda10
7 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
ALTER TABLE [dbo].[WeChatTransactionComponentOrder] ADD [paymentId] NVARCHAR (50) NULL;
GO
EXECUTE sp_addextendedproperty @name = N'MS_Description', @value = N'支付单序列', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'WeChatTransactionComponentOrder', @level2type = N'COLUMN', @level2name = N'paymentId';

View File

@@ -1,3 +1,6 @@
2022-07-04
【新增】表【WeChatTransactionComponentOrder】微信交易订单表增加【paymentId】字段。
2022-06-30
【新增】表【CoreCmsCheckBeforeAddOrder】微信交易组件下单前置检查调整表【CoreCmsBillPayments】【payedMsg】字段长度。