From 630692369713818816c9fd1b6541b69b30640f10 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期三, 30 八月 2023 17:04:55 +0800 Subject: [PATCH] Merge branch 'develop' --- src/templates/zshare/editTable/index.jsx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/templates/zshare/editTable/index.jsx b/src/templates/zshare/editTable/index.jsx index 3f0e3fe..60dd750 100644 --- a/src/templates/zshare/editTable/index.jsx +++ b/src/templates/zshare/editTable/index.jsx @@ -389,7 +389,7 @@ } else { let datatype = 'Nvarchar(50)' let fieldlength = 50 - if (col.fieldlength && [10, 20, 50, 100, 256, 512, 1024, 2048].includes(col.fieldlength)) { + if (col.fieldlength && [10, 20, 50, 100, 256, 512, 1024, 2048, 4000].includes(col.fieldlength)) { fieldlength = col.fieldlength datatype = `Nvarchar(${fieldlength})` } -- Gitblit v1.8.0