Use table name constant in Cols for type safety
This commit is contained in:
34
app/model/dbmodel/ps_image.go
Normal file
34
app/model/dbmodel/ps_image.go
Normal file
@@ -0,0 +1,34 @@
|
||||
// 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 dbmodel
|
||||
|
||||
import "git.ma-al.com/goc_marek/gormcol"
|
||||
|
||||
const TableNamePsImage = "ps_image"
|
||||
|
||||
// PsImage mapped from table <ps_image>
|
||||
type PsImage struct {
|
||||
IDImage int32 `gorm:"column:id_image;primaryKey;autoIncrement:true;uniqueIndex:idx_product_image,priority:1" json:"id_image"`
|
||||
IDProduct int32 `gorm:"column:id_product;not null;uniqueIndex:idx_product_image,priority:2;uniqueIndex:id_product_cover,priority:1;index:image_product,priority:1" json:"id_product"`
|
||||
Position int32 `gorm:"column:position;not null" json:"position"`
|
||||
Cover *bool `gorm:"column:cover;uniqueIndex:idx_product_image,priority:3;uniqueIndex:id_product_cover,priority:2" json:"cover"`
|
||||
}
|
||||
|
||||
// TableName PsImage's table name
|
||||
func (*PsImage) TableName() string {
|
||||
return TableNamePsImage
|
||||
}
|
||||
|
||||
var PsImageCols = struct {
|
||||
IDImage gormcol.Field
|
||||
IDProduct gormcol.Field
|
||||
Position gormcol.Field
|
||||
Cover gormcol.Field
|
||||
}{
|
||||
IDImage: gormcol.Field{Table: TableNamePsImage, Column: "id_image"},
|
||||
IDProduct: gormcol.Field{Table: TableNamePsImage, Column: "id_product"},
|
||||
Position: gormcol.Field{Table: TableNamePsImage, Column: "position"},
|
||||
Cover: gormcol.Field{Table: TableNamePsImage, Column: "cover"},
|
||||
}
|
||||
Reference in New Issue
Block a user