// Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. // Code generated by gorm.io/gen. DO NOT EDIT. package models const TableNameInvGroup = "invGroups" // InvGroup mapped from table type InvGroup struct { GroupID int32 `gorm:"column:groupID;type:INTEGER" json:"groupID"` CategoryID int32 `gorm:"column:categoryID;type:INTEGER" json:"categoryID"` GroupName string `gorm:"column:groupName;type:VARCHAR(100)" json:"groupName"` IconID int32 `gorm:"column:iconID;type:INTEGER" json:"iconID"` UseBasePrice bool `gorm:"column:useBasePrice;type:BOOLEAN" json:"useBasePrice"` Anchored bool `gorm:"column:anchored;type:BOOLEAN" json:"anchored"` Anchorable bool `gorm:"column:anchorable;type:BOOLEAN" json:"anchorable"` FittableNonSingleton bool `gorm:"column:fittableNonSingleton;type:BOOLEAN" json:"fittableNonSingleton"` Published bool `gorm:"column:published;type:BOOLEAN" json:"published"` } // TableName InvGroup's table name func (*InvGroup) TableName() string { return TableNameInvGroup }