mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
Upddate QuestDb
This commit is contained in:
@@ -284,15 +284,16 @@ namespace SqlSugar
|
||||
}
|
||||
public override bool AddColumnRemark(string columnName, string tableName, string description)
|
||||
{
|
||||
tableName = this.SqlBuilder.GetTranslationTableName(tableName);
|
||||
string sql = string.Format(this.AddColumnRemarkSql, columnName, tableName, description);
|
||||
this.Context.Ado.ExecuteCommand(sql);
|
||||
//tableName = this.SqlBuilder.GetTranslationTableName(tableName);
|
||||
//string sql = string.Format(this.AddColumnRemarkSql, columnName, tableName, description);
|
||||
//this.Context.Ado.ExecuteCommand(sql);
|
||||
return true;
|
||||
}
|
||||
public override bool AddTableRemark(string tableName, string description)
|
||||
{
|
||||
tableName = this.SqlBuilder.GetTranslationTableName(tableName);
|
||||
return base.AddTableRemark(tableName, description);
|
||||
//tableName = this.SqlBuilder.GetTranslationTableName(tableName);
|
||||
//return base.AddTableRemark(tableName, description);
|
||||
return true;
|
||||
}
|
||||
public override bool UpdateColumn(string tableName, DbColumnInfo columnInfo)
|
||||
{
|
||||
|
Reference in New Issue
Block a user