|
|
@@ -37,6 +37,7 @@ type Column struct {
|
|
|
SetOptions map[string]int
|
|
|
DisableTimeZone bool
|
|
|
TimeZone *time.Location // column specified time zone
|
|
|
+ Comment string
|
|
|
}
|
|
|
|
|
|
func NewColumn(name, fieldName string, sqlType SQLType, len1, len2 int, nullable bool) *Column {
|
|
|
@@ -60,6 +61,7 @@ func NewColumn(name, fieldName string, sqlType SQLType, len1, len2 int, nullable
|
|
|
IsVersion: false,
|
|
|
DefaultIsEmpty: false,
|
|
|
EnumOptions: make(map[string]int),
|
|
|
+ Comment: "",
|
|
|
}
|
|
|
}
|
|
|
|