17 lines
304 B
Go
17 lines
304 B
Go
package db
|
|
|
|
import (
|
|
"time"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Beatmapset struct {
|
|
gorm.Model
|
|
ID int `gorm:"primaryKey"`
|
|
Artist string
|
|
Title string
|
|
MapperID int `gorm:"mapper_id"`
|
|
Mapper User `gorm:"foreignKey:MapperID"`
|
|
LastUpdated time.Time `gorm:"last_updated"`
|
|
}
|