22 lines
796 B
Go
22 lines
796 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 TableNameMapCelestialGraphic = "mapCelestialGraphics"
|
|
|
|
// MapCelestialGraphic mapped from table <mapCelestialGraphics>
|
|
type MapCelestialGraphic struct {
|
|
CelestialID int32 `gorm:"column:celestialID;primaryKey" json:"celestialID"`
|
|
HeightMap1 int32 `gorm:"column:heightMap1" json:"heightMap1"`
|
|
HeightMap2 int32 `gorm:"column:heightMap2" json:"heightMap2"`
|
|
ShaderPreset int32 `gorm:"column:shaderPreset" json:"shaderPreset"`
|
|
Population bool `gorm:"column:population" json:"population"`
|
|
}
|
|
|
|
// TableName MapCelestialGraphic's table name
|
|
func (*MapCelestialGraphic) TableName() string {
|
|
return TableNameMapCelestialGraphic
|
|
}
|