Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Column ¶
type Column struct {
Name string `db:"column_name" json:"name"`
Nullable string `db:"is_nullable" json:"-"`
DataType string `db:"udt_name" json:"data_type"`
TableName string `db:"table_schema" json:"-"`
TableSchema string `db:"table_name" json:"table_name"`
PrimaryKey bool `db:"primary_key" json:"primary"`
IsSequence bool `db:"is_sequence" json:"is_sequence"`
}
Column entity in table `information_schema.columns`
type Setting ¶
type Setting struct {
Database struct {
ConnectionString string `yaml:"connection-string"`
Type string `yaml:"type"`
} `yaml:"database"`
}
Use to mapping setting from /conf/setting.yml
Click to show internal directories.
Click to hide internal directories.