有没有办法创建单名数据库 table?

Are there any way to create singular-name DB table?

希望大家帮帮我!

在结构 User 上实现函数 TableName 以 return 为 table 自定义名称。 ORM 使用此函数为所有数据库操作获取 table 名称。

func (user *User) TableName() string {
    return "user"
}

在此处参考文档:http://jinzhu.me/gorm/models.html#table-name-is-the-pluralized-version-of-struct-name

您已将数据库实例设置为使用单数 table,如下所示: db.SingularTable(true)