Update xorm (#8286)

Signed-off-by: jolheiser <john.olheiser@gmail.com>
This commit is contained in:
John Olheiser 2019-09-25 14:02:54 -05:00 committed by Lauris BH
parent a8c024043c
commit f8882f4fa9
6 changed files with 61 additions and 11 deletions

View file

@ -254,6 +254,9 @@ func (db *mssql) SqlType(c *core.Column) string {
case core.TinyInt:
res = core.TinyInt
c.Length = 0
case core.BigInt:
res = core.BigInt
c.Length = 0
default:
res = t
}