Optimize Oracle create tables

This commit is contained in:
sunkaixuan 2024-01-23 13:15:31 +08:00
parent 0f8e88189e
commit df1d1460ce

View File

@ -641,6 +641,10 @@ WHERE table_name = '"+tableName+"'");
x.Length = 0;
x.DecimalDigits = 0;
}
if (x.OracleDataType.HasValue())
{
x.DataType = x.OracleDataType;
}
}
#endregion
}