From 50c5dcb885466ade7da6eb27f8e730277b48eae5 Mon Sep 17 00:00:00 2001 From: "Valeriano A.R" Date: Thu, 3 Oct 2019 14:24:32 +0200 Subject: [PATCH] TableBL: Fix table creation scripts. Columns of type image does not need size. --- VAR.DatabaseExplorer/Code/BusinessLogic/TableBL.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VAR.DatabaseExplorer/Code/BusinessLogic/TableBL.cs b/VAR.DatabaseExplorer/Code/BusinessLogic/TableBL.cs index ded5da1..be30dbd 100644 --- a/VAR.DatabaseExplorer/Code/BusinessLogic/TableBL.cs +++ b/VAR.DatabaseExplorer/Code/BusinessLogic/TableBL.cs @@ -84,7 +84,7 @@ namespace VAR.DatabaseExplorer.Code.BusinessLogic c.Type == "nchar" || c.Type == "binary" || c.Type == "varbinary" || - c.Type == "image") + false) { if (c.Size < 0) {