subscribe-bot/db/beatmap.go

18 lines
279 B
Go

package db
import (
"time"
"gorm.io/gorm"
)
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"`
}