subscribe-bot/db/user.go

14 lines
366 B
Go
Raw Permalink Normal View History

2021-07-21 22:09:06 +00:00
package db
import "gorm.io/gorm"
type User struct {
gorm.Model
ID int `gorm:"primaryKey"`
Username string
Country string
LatestEventID int `gorm:"latest_event_id"`
TrackingChannels []DiscordChannel `gorm:"many2many:tracked_mappers"`
TrackedBeatmapsets []Beatmapset `gorm:"foreignKey:MapperID"`
2021-07-21 22:09:06 +00:00
}