Fixed type for non-nullable uniqueidentifier, xml
This commit is contained in:
parent
dbf897977a
commit
874d2ed2e6
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ func (m *MSSQLDriver) TranslateColumnType(c bdb.Column) bdb.Column {
|
|||
case "timestamp", "rowversion":
|
||||
c.Type = "[]byte"
|
||||
case "uniqueidentifier", "xml":
|
||||
c.Type = "null.String"
|
||||
c.Type = "string"
|
||||
default:
|
||||
c.Type = "string"
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue