mirror of
https://github.com/beego/bee.git
synced 2024-11-22 05:00:54 +00:00
Merge pull request #284 from filiphaftek/master
Fix incorrect generation of postgres table id type
This commit is contained in:
commit
9e856ecb33
@ -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 != "" {
|
||||
|
Loading…
Reference in New Issue
Block a user