mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-05 21:27:58 +08:00
Update pgsql codefirst
This commit is contained in:
parent
e679568daa
commit
edffc8a290
@ -2,6 +2,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
namespace SqlSugar
|
namespace SqlSugar
|
||||||
{
|
{
|
||||||
@ -261,7 +262,15 @@ namespace SqlSugar
|
|||||||
}
|
}
|
||||||
public override bool AddDefaultValue(string tableName, string columnName, string defaultValue)
|
public override bool AddDefaultValue(string tableName, string columnName, string defaultValue)
|
||||||
{
|
{
|
||||||
return base.AddDefaultValue(this.SqlBuilder.GetTranslationTableName(tableName), this.SqlBuilder.GetTranslationTableName(columnName), defaultValue);
|
if (defaultValue?.StartsWith("'")==true&& defaultValue?.EndsWith("'") == true&& defaultValue?.Contains("(") == false)
|
||||||
|
{
|
||||||
|
string sql = string.Format(AddDefaultValueSql, tableName, columnName, defaultValue);
|
||||||
|
return this.Context.Ado.ExecuteCommand(sql) > 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return base.AddDefaultValue(this.SqlBuilder.GetTranslationTableName(tableName), this.SqlBuilder.GetTranslationTableName(columnName), defaultValue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
public override bool AddColumnRemark(string columnName, string tableName, string description)
|
public override bool AddColumnRemark(string columnName, string tableName, string description)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user