Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Column ¶
type Column struct {
// column name
Name string
// column position in sql database
Position int
// column data type with precision or size, eg. VARCHAR(20)
Type string
// column data type without precision and size, eg. VARCHAR
DataType string
// whether column is nullable or not
IsNullable types.Boolean
// default value of the column
DefaultValue *string
// text character set encoding
Charset *string
// text collation for sorting
Collation *string
// column comment
Comment string
// extra information
Extra string
}
Column :
Click to show internal directories.
Click to hide internal directories.