Fix update bug #1823

Merged
lunny merged 2 commits from lunny/fix_update into master 2021-01-05 02:55:47 +00:00
Showing only changes of commit 33ff3df03f - Show all commits

View File

@ -399,6 +399,10 @@ func TestSync2_Default(t *testing.T) {
}
func TestModifyColum(t *testing.T) {
// Since SQLITE don't support modify column SQL, currrently just ignore
if testEngine.Dialect().URI().DBType == schemas.SQLITE {
return
}
type TestModifyColumn struct {
Id int64
UserId int64 `xorm:"default(1)"`