Merge branch 'master' of github.com:go-xorm/xorm
This commit is contained in:
commit
5293f702b9
|
@ -247,6 +247,9 @@ func (db *mssql) SqlType(c *core.Column) string {
|
|||
res = core.Text
|
||||
case core.Double:
|
||||
res = core.Real
|
||||
case core.Uuid:
|
||||
res = core.Varchar
|
||||
c.Length = 40
|
||||
default:
|
||||
res = t
|
||||
}
|
||||
|
|
|
@ -204,7 +204,7 @@ func (statement *Statement) In(column string, args ...interface{}) *Statement {
|
|||
return statement
|
||||
}
|
||||
|
||||
// NotIn generate "Where column IN (?) " statment
|
||||
// NotIn generate "Where column NOT IN (?) " statment
|
||||
func (statement *Statement) NotIn(column string, args ...interface{}) *Statement {
|
||||
if len(args) == 0 {
|
||||
return statement
|
||||
|
|
Loading…
Reference in New Issue