postgres icon indicating copy to clipboard operation
postgres copied to clipboard

How to use NamingStrategy.IdentifierMaxLength in postgres driver

Open alidevhere opened this issue 1 year ago • 3 comments

Describe the feature

NamingStrategy.IdentifierMaxLength has been added in gorm, which allows to override max length of 64. How to make use of this in postgres driver to change it to 63. @jinzhu i can only think of it like this :

import (
	"gorm.io/driver/postgres"
	"gorm.io/gorm"
	s "gorm.io/gorm/schema"
)

func main() {

	db, err := gorm.Open(postgres.New(postgres.Config{
		DSN:                  "host=localhost user=gorm password=gorm dbname=gorm port=9920 sslmode=disable TimeZone=Asia/Shanghai", // data source name, refer https://github.com/jackc/pgx
		PreferSimpleProtocol: true,                                                                                                  // disables implicit prepared statement usage. By default pgx automatically uses the extended protocol
	}), &gorm.Config{NamingStrategy: s.NamingStrategy{IdentifierMaxLength: 63}})

}


Related Issues

And please assign this issue to me, i will work on it commited change in gorm

alidevhere avatar May 30 '23 03:05 alidevhere