mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 12:30:54 +00:00
Update cmd_utils.go
[Fix] Fix create table with SQLite not supporting COMMENT syntax
This commit is contained in:
parent
aa90c67a75
commit
92a4119258
@ -198,7 +198,7 @@ func getDbCreateSQL(al *alias) (sqls []string, tableIndexes map[string][]dbIndex
|
||||
column = strings.Replace(column, "%COL%", fi.column, -1)
|
||||
}
|
||||
|
||||
if fi.description != "" {
|
||||
if fi.description != "" && al.Driver!=DRSqlite {
|
||||
column += " " + fmt.Sprintf("COMMENT '%s'",fi.description)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user