This commit is contained in:
sunkaixuan 2019-05-21 14:44:51 +08:00
parent fb370e6a43
commit c83cab77ec

View File

@ -383,7 +383,7 @@ namespace SqlSugar
}
else
{
appendSql += column.IsNullable ? " NULL" : "NOT NULL";
appendSql += column.IsNullable ? " NULL " : " NOT NULL ";
}
tableName = this.SqlBuilder.GetTranslationTableName(tableName);
oldColumnName = this.SqlBuilder.GetTranslationColumnName(oldColumnName);