修改xorm的default的拼写错误

pull/164/head
liucan 2019-01-04 17:03:10 +08:00 committed by qiang.ou
parent b3632006bb
commit 0b0502d34c
1 changed files with 2 additions and 2 deletions

View File

@ -18,11 +18,11 @@ type TaskLog struct {
Command string `json:"command" xorm:"varchar(256) notnull"` // URL地址或shell命令
Timeout int `json:"timeout" xorm:"mediumint notnull default 0"` // 任务执行超时时间(单位秒),0不限制
RetryTimes int8 `json:"retry_times" xorm:"tinyint notnull default 0"` // 任务重试次数
Hostname string `json:"hostname" xorm:"varchar(128) notnull defalut '' "` // RPC主机名逗号分隔
Hostname string `json:"hostname" xorm:"varchar(128) notnull default '' "` // RPC主机名逗号分隔
StartTime time.Time `json:"start_time" xorm:"datetime created"` // 开始执行时间
EndTime time.Time `json:"end_time" xorm:"datetime updated"` // 执行完成(失败)时间
Status Status `json:"status" xorm:"tinyint notnull index default 1"` // 状态 0:执行失败 1:执行中 2:执行完毕 3:任务取消(上次任务未执行完成) 4:异步执行
Result string `json:"result" xorm:"mediumtext notnull defalut '' "` // 执行结果
Result string `json:"result" xorm:"mediumtext notnull default '' "` // 执行结果
TotalTime int `json:"total_time" xorm:"-"` // 执行总时长
BaseModel `json:"-" xorm:"-"`
}