23 lines
899 B
Go
23 lines
899 B
Go
// 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 TableNameEveGraphic = "eveGraphics"
|
|
|
|
// EveGraphic mapped from table <eveGraphics>
|
|
type EveGraphic struct {
|
|
GraphicID int32 `gorm:"column:graphicID;type:INTEGER" json:"graphicID"`
|
|
SofFactionName string `gorm:"column:sofFactionName;type:VARCHAR(100)" json:"sofFactionName"`
|
|
GraphicFile string `gorm:"column:graphicFile;type:VARCHAR(256)" json:"graphicFile"`
|
|
SofHullName string `gorm:"column:sofHullName;type:VARCHAR(100)" json:"sofHullName"`
|
|
SofRaceName string `gorm:"column:sofRaceName;type:VARCHAR(100)" json:"sofRaceName"`
|
|
Description string `gorm:"column:description;type:TEXT" json:"description"`
|
|
}
|
|
|
|
// TableName EveGraphic's table name
|
|
func (*EveGraphic) TableName() string {
|
|
return TableNameEveGraphic
|
|
}
|