subscribe-bot/db/beatmap.go

18 lines
304 B
Go
Raw Permalink Normal View History

2021-07-21 22:09:06 +00:00
package db
import (
"time"
"gorm.io/gorm"
)
2021-07-21 22:09:06 +00:00
type Beatmapset struct {
gorm.Model
ID int `gorm:"primaryKey"`
Artist string
Title string
2021-07-22 08:11:48 +00:00
MapperID int `gorm:"mapper_id"`
Mapper User `gorm:"foreignKey:MapperID"`
LastUpdated time.Time `gorm:"last_updated"`
2021-07-21 22:09:06 +00:00
}