Fix typo in column.go (#1908)
Avaiable -> Available Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-on: https://gitea.com/xorm/xorm/pulls/1908 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Ikko Ashimine <eltociear@noreply.gitea.io> Co-committed-by: Ikko Ashimine <eltociear@noreply.gitea.io>
This commit is contained in:
parent
99cd8c80fb
commit
8843a88503
|
@ -24,7 +24,7 @@ const (
|
||||||
type Column struct {
|
type Column struct {
|
||||||
Name string
|
Name string
|
||||||
TableName string
|
TableName string
|
||||||
FieldName string // Avaiable only when parsed from a struct
|
FieldName string // Available only when parsed from a struct
|
||||||
SQLType SQLType
|
SQLType SQLType
|
||||||
IsJSON bool
|
IsJSON bool
|
||||||
Length int
|
Length int
|
||||||
|
|
Loading…
Reference in New Issue