## GORM Playground Link <!-- To ensure your issue be handled, the issue *MUST* include a GORM Playground Pull Request Link that can reproduce the bug, which is important to help others understand your issue effectively and make sure the issue hasn't been fixed, refer: https://github.com/go-gorm/playground Without the link, your issue most likely will be IGNORED CHANGE FOLLOWING URL TO YOUR PLAYGROUND LINK --> https://github.com/go-gorm/playground/pull/1 ## Description <!-- gorm.io/gorm v1.30.1 func (Test) TableName() string { return "test" } type Test struct { Id string `gorm:"column:id;type:uuid;primary_key;not null" json:"id"` Name string `gorm:"column:name;type:text;not null" json:"name"` } //create table test db.AutoMigrate(&Test{}) type Test struct { Id string `gorm:"column:id;type:uuid;primary_key;not null" json:"id"` Name string `gorm:"column:name;type:text;not null" json:"name"` Label string `gorm:"column:label;type:text" json:"label"` //add new column } db.Debug() // Expected to automatically add table field labels, but it did not take effect. // and there was a "got 2 parameters but the statement requires 1" log printed during the execution process db.AutoMigrate(&Test{}) test.go:53 pq: got 2 parameters but the statement requires 1 [31.639ms] [rows:-] SELECT * FROM "test" LIMIT 5 . -->