Merge branch 'master' into develop

This commit is contained in:
astaxie 2016-09-22 23:12:06 +08:00
commit b368f2b16a
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ func (m postgresqlDriver) generateSQLFromFields(fields string) string {
return ""
}
if i == 0 && strings.ToLower(kv[0]) != "id" {
sql += "id interger serial primary key,"
sql += "id serial primary key,"
}
sql += snakeString(kv[0]) + " " + typ + ","
if tag != "" {