tierlist/backend/models.go

14 lines
217 B
Go
Raw Permalink Normal View History

2020-12-11 10:16:49 +00:00
package main
import "github.com/jinzhu/gorm"
type UserModel struct {
OsuID uint `gorm:"primary_key"`
Username string
AccessToken string
}
func AutoMigrate(db *gorm.DB) {
db.AutoMigrate(&UserModel{})
}