13 lines
217 B
Go
13 lines
217 B
Go
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{})
|
|
}
|