Small fix to change strings back to LONGTEXT

This commit is contained in:
Daylon Wilkins
2019-12-18 11:19:52 -08:00
committed by Daylon Wilkins
parent c71278a945
commit f0403543f4

View File

@@ -29,7 +29,7 @@ func (stringType) NomsKind() dtypes.NomsKind {
}
func (stringType) SqlType() sql.Type {
return sql.Text
return sql.Text.Promote()
}
func (stringType) SqlTypes() []sql.Type {