add field comment on create table

This commit is contained in:
lintao
2018-06-06 12:33:28 +08:00
parent 768406f134
commit 1df2662924
2 changed files with 6 additions and 0 deletions

View File

@@ -197,6 +197,10 @@ func getDbCreateSQL(al *alias) (sqls []string, tableIndexes map[string][]dbIndex
if strings.Contains(column, "%COL%") {
column = strings.Replace(column, "%COL%", fi.column, -1)
}
if fi.description != "" {
column += " " + fmt.Sprintf("COMMENT '%s'",fi.description)
}
columns = append(columns, column)
}