Update sqlite updateColumn

This commit is contained in:
sunkaixuan 2023-12-30 16:44:15 +08:00
parent e973e92b67
commit 8537cbef73

View File

@ -258,7 +258,12 @@ namespace SqlSugar
public override bool UpdateColumn(string tableName, DbColumnInfo column)
{
try
{
{
if (column.IsPrimarykey)
{
Check.ExceptionEasy("Sqlite no support alter column primary key","Sqlite不支持修改主键");
}
// Start a transaction
this.Context.Ado.BeginTran();