subscribe-bot/db/beatmap.go

18 lines
279 B
Go
Raw Normal View History

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