subscribe-bot/db/beatmap.go

13 lines
214 B
Go
Raw Normal View History

2021-07-21 22:09:06 +00:00
package db
import "gorm.io/gorm"
type Beatmapset struct {
gorm.Model
ID int `gorm:"primaryKey"`
Artist string
Title string
MapperID int
Mapper User `gorm:"foreignKey:MapperID;references:ID"`
}