Update Oracle&dm

This commit is contained in:
sunkaixuan 2025-05-07 10:21:08 +08:00
parent 2a7b7b05e2
commit 2e76df6a2e
2 changed files with 3 additions and 1 deletions

View File

@ -328,6 +328,7 @@ WHERE table_name = '" + tableName + "'");
columnInfo.DataType = "varchar2";
columnInfo.Length = 50;
}
ConvertCreateColumnInfo(columnInfo);
return base.AddColumn(tableName, columnInfo);
}
public override bool CreateIndex(string tableName, string[] columnNames, bool isUnique = false)

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Linq;
using System.Text;
using System.Text;
namespace SqlSugar
{
@ -358,6 +358,7 @@ WHERE table_name = '"+tableName+"'");
columnInfo.DataType = "varchar2";
columnInfo.Length = 50;
}
ConvertCreateColumnInfo(columnInfo);
return base.AddColumn(tableName,columnInfo);
}
public override bool CreateIndex(string tableName, string[] columnNames, bool isUnique=false)