mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-15 20:49:31 +08:00
Update Oracle&dm
This commit is contained in:
parent
2a7b7b05e2
commit
2e76df6a2e
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user