Merge pull request #284 from filiphaftek/master

Fix incorrect generation of postgres table id type
This commit is contained in:
astaxie 2016-09-18 09:07:37 +08:00 committed by GitHub
commit 9e856ecb33
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 != "" {