21 lines
838 B
Go
21 lines
838 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 TableNameMapConstellationJump = "mapConstellationJumps"
|
|
|
|
// MapConstellationJump mapped from table <mapConstellationJumps>
|
|
type MapConstellationJump struct {
|
|
FromRegionID int32 `gorm:"column:fromRegionID;type:INTEGER" json:"fromRegionID"`
|
|
FromConstellationID int32 `gorm:"column:fromConstellationID;type:INTEGER" json:"fromConstellationID"`
|
|
ToConstellationID int32 `gorm:"column:toConstellationID;type:INTEGER" json:"toConstellationID"`
|
|
ToRegionID int32 `gorm:"column:toRegionID;type:INTEGER" json:"toRegionID"`
|
|
}
|
|
|
|
// TableName MapConstellationJump's table name
|
|
func (*MapConstellationJump) TableName() string {
|
|
return TableNameMapConstellationJump
|
|
}
|