Fix bug of sqlite modify column
This commit is contained in:
parent
bf55bb8218
commit
33ff3df03f
|
@ -399,6 +399,10 @@ func TestSync2_Default(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestModifyColum(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 {
|
type TestModifyColumn struct {
|
||||||
Id int64
|
Id int64
|
||||||
UserId int64 `xorm:"default(1)"`
|
UserId int64 `xorm:"default(1)"`
|
||||||
|
|
Loading…
Reference in New Issue