blob: 1d716a2d3046d8406165936320b62d5c4d84d5c3 [file] [log] [blame]
package entity
// Config config
type Config struct {
ID int `xorm:"not null pk autoincr INT(11) id"`
Key string `xorm:"unique VARCHAR(32) key"`
Value string `xorm:"TEXT value"`
}
// TableName config table name
func (Config) TableName() string {
return "config"
}